Safeguard hinzugefügt

This commit is contained in:
Michael Grote 2021-03-29 12:28:35 +02:00
parent 629e043cb4
commit 75e62d00e0
1 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,8 @@ alias tf="tail -f "
alias scs="systemctl status "
alias scr="systemctl restart "
alias scw="watch systemctl status "
alias hostname="hostname -f"
alias what="whoami && pwd && hostname -f"
# typo
alias mkae="make "
alias amke="make "
@ -30,3 +32,7 @@ alias dicker="docker"
alias dcu="docker-compose up"
alias dcd="docker-compose down"
alias dcr="docker-compose down && docker-compose up -d"
# safeguard
alias mv="mv -i "
alias cp="cp -i "
alias rm="rm -i "