diff options
author | EuAndreh <eu@euandre.org> | 2018-12-09 11:42:41 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-12-09 11:42:41 -0200 |
commit | 705f3b755d8e9b735ae9045ede9b3f386ac13e68 (patch) | |
tree | 30f38c1ff94282d3dde34ed8245825fde05dc5db | |
parent | Add =lower= alias. (diff) | |
download | dotfiles-705f3b755d8e9b735ae9045ede9b3f386ac13e68.tar.gz dotfiles-705f3b755d8e9b735ae9045ede9b3f386ac13e68.tar.xz |
Add trim bash 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 5e38c35..b9a9218 100644 --- a/bash/aliases.sh +++ b/bash/aliases.sh @@ -13,6 +13,7 @@ isLinux && { isMac && { alias copy="tr -d '\n' | pbcopy" } +alias trim="tr -d '\n'" 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 |