dotfiles/.functions
2019-03-22 16:27:06 +00:00

12 lines
139 B
Plaintext

shorten() {
pushd ~/Code/opdavi.es
git pull --rebase
npm run shorten $1 $2
popd
}
function mkd() {
mkdir -p "$@" && cd "$@"
}