aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/dirs.fish
blob: 64660e345b85a46247cf10c887a500baff8fbb19 (plain)
1
2
3
4
5
6
7
8
9
function dirs --description "Print directory stack"
	echo -n (command pwd)"  "
	for i in $dirstack
		echo -n $i"  "
	end
	echo
end