fish-shell/init/functions/dirs.fish

10 lines
122 B
Fish
Raw Normal View History

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