mirror of
https://github.com/fish-shell/fish-shell
synced 2025-02-15 05:28:41 +00:00
9 lines
133 B
Fish
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
|
|
|
|
|