summaryrefslogtreecommitdiff
path: root/home/.selfconfigs/zsh/functions/cdl
blob: d11c086d3a71e5da1180cf56a26e0477f10a1a0d (plain)
1
2
3
4
5
6
7
8
function cdl()
{
	if [ $# == 0 ] || [ ! -L $1 ]; then
		echo usage: cdl \[LINK\]
	else
		cd $1(:A:h)
	fi
}