1
0
Fork 0
This commit is contained in:
Starbeamrainbowlabs 2016-12-04 10:54:50 +01:00
parent 886ca06332
commit 29483d85a3
1 changed files with 8 additions and 2 deletions

View File

@ -18,10 +18,13 @@ alias l='ls -htFl'
alias cp='cp -i'
alias mv='mv -i'
# make mkdir tell us about each directory it has created
# Make everything tell us what they're doing
alias mkdir='mkdir -pv'
# make rm tell us about everything it's deleting
alias rm='rm -v'
alias rmdir='rmdir -v'
# Make the permissions tweaking commands give us more information about what they are doing
alias chmod='chmod -c'
alias chown='chown -c'
@ -30,6 +33,9 @@ alias chgrp='chgrp -c'
# Make time work properly
alias time=/usr/bin/time
# dfh: Show disk usage in a form we can actually understand
alias dfh='df -h'
# catz: gunzip & display commpressed gz files.
alias catz='gunzip -c'