fish-shell/share/functions/dirs.fish
2007-01-16 11:29:18 +10:00

9 lines
133 B
Fish

function dirs --description "Print directory stack"
echo -n (command pwd)" "
for i in $dirstack
echo -n $i" "
end
echo
end