diff options
author | EuAndreh <eu@euandre.org> | 2018-12-07 07:04:49 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-12-07 07:04:49 -0200 |
commit | 42b98a3369b501f06602c79b1dacf323847e1dce (patch) | |
tree | cac53adc806aa8a181f8eaf9d0c5f999f814ecbd | |
parent | Add custom alias for =copy= on macOS. (diff) | |
download | dotfiles-42b98a3369b501f06602c79b1dacf323847e1dce.tar.gz dotfiles-42b98a3369b501f06602c79b1dacf323847e1dce.tar.xz |
Add =lower= alias.
-rw-r--r-- | bash/aliases.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bash/aliases.sh b/bash/aliases.sh index c8fa2b3..5e38c35 100644 --- a/bash/aliases.sh +++ b/bash/aliases.sh @@ -13,6 +13,7 @@ isLinux && { isMac && { alias copy="tr -d '\n' | pbcopy" } +alias lower="tr [:upper:] [:lower:]" alias pia-vpn="sudo openvpn --config $DOTFILES/VPN/euandreh.ovpn" # Source: https://unix.stackexchange.com/questions/25327/watch-command-alias-expansion#25329 alias watch="watch " |