mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 13:40:45 +08:00
10 lines
133 B
Fish
10 lines
133 B
Fish
function dirs --description "Print directory stack"
|
|
echo -n (command pwd)" "
|
|
for i in $dirstack
|
|
echo -n $i" "
|
|
end
|
|
echo
|
|
end
|
|
|
|
|