mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-09 03:28:48 +00:00
10 lines
122 B
Fish
10 lines
122 B
Fish
|
function dirs -d "Print directory stack"
|
||
|
echo -n (command pwd)" "
|
||
|
for i in $dirstack
|
||
|
echo -n $i" "
|
||
|
end
|
||
|
echo
|
||
|
end
|
||
|
|
||
|
|