20 lines
311 B
Bash
20 lines
311 B
Bash
# Command Line Foo
|
|
alias clf='clf --color'
|
|
|
|
# The Fuck
|
|
TF_ALIAS=fuck alias fuck='eval $(thefuck $(fc -ln -1 | tail -n 1)); fc -R'
|
|
|
|
# PClear
|
|
pclear () {
|
|
clear
|
|
printf '\033[3J'
|
|
}
|
|
|
|
# Termbin
|
|
alias tb='nc termbin.com 9999'
|
|
|
|
# Make Dir and enter it
|
|
mkcd() {
|
|
mkdir $1 >/dev/null 2>&1
|
|
[ -e $1 ] && cd $1
|
|
}
|