Added some kooshy defaults to basic commands from: https://youtu.be/Wl7CDe9jsuo
This commit is contained in:
parent
80406f2e14
commit
4dc203c8d4
|
@ -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'
|
||||
|
||||
|
|
Loading…
Reference in New Issue