dotfiles/.functions

12 lines
139 B
Plaintext
Raw Normal View History

2019-03-22 16:27:06 +00:00
shorten() {
pushd ~/Code/opdavi.es
git pull --rebase
npm run shorten $1 $2
popd
}
function mkd() {
mkdir -p "$@" && cd "$@"
}