bashrc & zshrc: alias lowernocolon

Closes #61
This commit is contained in:
Aminda Suomalainen 2015-02-12 13:59:33 +02:00
parent 8c0a89be50
commit 51d5ecd91d
2 changed files with 8 additions and 0 deletions

View File

@ -590,6 +590,10 @@ alias multicat='tail -n +1'
# Getting SSIDs and keys from connmann (Jolla)
alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings --no-filename'
# Turn input into lowercase and remove colons.
# Meant for SSL certificates (IRC))
alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'"
# Allow custom aliases to be put in .aliases or .bash_aliases .
# .aliases

View File

@ -565,6 +565,10 @@ alias multicat='tail -n +1'
# Getting SSIDs and keys from connmann (Jolla)
alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings --no-filename'
# Turn input into lowercase and remove colons.
# Meant for SSL certificates (IRC))
alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'"
# .aliases
if [ -f ~/.aliases ]; then
source ~/.aliases