mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-09 06:05:33 +08:00
10 lines
127 B
Fish
10 lines
127 B
Fish
function dirs -d (N_ "Print directory stack")
|
|
echo -n (command pwd)" "
|
|
for i in $dirstack
|
|
echo -n $i" "
|
|
end
|
|
echo
|
|
end
|
|
|
|
|