This commit is contained in:
Eduard Tolosa 2020-01-26 01:35:54 -05:00
parent a461012f35
commit ddbe4e8859
10 changed files with 37 additions and 11 deletions

View file

@ -83,13 +83,14 @@ alias hibernate='systemctl hibernate'
alias shutdown='systemctl poweroff'
alias reboot='systemctl reboot'
# Alias for going to a temporal dir
alias cdtemp='cd $(mktemp -d)'
# Alias to show ip addresses in short and color
alias ipa='ip -c -br a'
# Avoid pip installing packages as root/sudo, execute the following line in your terminal or just delete the # at the begin
#install -Dm644 /dev/stdin ~/.config/pip/pip.conf <<< $'[install]\nuser = yes\n'
# Alias for temporal dir/files
alias dtemp='cd $(mktemp -d)'
alias ftemp='$EDITOR $(mktemp).txt'
### END OWN ALIAS ###