//Tips tagged dirname
Latest tips by RSS
Click here to subscribe
Follow Shell-Fu on Twitter
Click here to follow
Follow Shell-Fu on identi.ca
Click here to follow
This can be used instead of "mv" to move file(s) and then cd into the destination folder.
mvf() {
if mv "$@"; then
shift $(($#-1))
if [ -d $1 ]; then
cd ${1}
else
cd `dirname ${1}`
fi
fi
}

