Added some kooshy defaults to basic commands from: https://youtu.be/Wl7CDe9jsuo

This commit is contained in:
David Thurstenson 2020-10-26 22:10:32 -05:00
parent 80406f2e14
commit 4dc203c8d4
1 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,14 @@
### ALIASES ###
# Nag on overwrite, and show your work
alias mv='mv -iv'
# Recurse by default, nag on overwrite, and show your work
alias cp='cp -riv'
# Create parents if necessary, and show your work
alias mkdir='mkdir -vp'
# Colorize all `ls` output:
alias ls='ls -AF --color=auto'