25 lines
324 B
Bash
25 lines
324 B
Bash
#!/bin/sh
|
|
|
|
# Verbose file operations
|
|
alias \
|
|
cp="cp -iv" \
|
|
mv="mv -iv" \
|
|
rm="rm -v" \
|
|
mkdir="mkdir -v"
|
|
|
|
# Colorize commands
|
|
alias \
|
|
ls="ls -hN --color=auto --group-directories-first" \
|
|
grep="grep --color=auto" \
|
|
diff="diff --color=auto"
|
|
|
|
# Abbreviations
|
|
alias \
|
|
e="$EDITOR" \
|
|
f="$FILE" \
|
|
g="git" \
|
|
v="$EDITOR"
|
|
|
|
|
|
|