19 lines
306 B
Text
19 lines
306 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Typical verbosity and settings.
|
||
|
|
alias \
|
||
|
|
mkd='mkdir -pv' \
|
||
|
|
ffmepg='ffmpeg -hidebanner'
|
||
|
|
|
||
|
|
# Colorize when possible.
|
||
|
|
alias \
|
||
|
|
ls='ls -h -N -G --group-directories-first' \
|
||
|
|
grep='grep --color=auto'
|
||
|
|
|
||
|
|
# Shortenings
|
||
|
|
alias \
|
||
|
|
d='docker' \
|
||
|
|
h='history' \
|
||
|
|
l='less' \
|
||
|
|
s='sudo'
|