mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-12 22:36:14 +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
|
|
|
|
|