mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 08:41:27 +08:00
8 lines
269 B
Fish
8 lines
269 B
Fish
function __fish_print_mounted --description 'Print mounted devices'
|
|
if test (uname) = Darwin
|
|
mount | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/"
|
|
else
|
|
cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/"
|
|
end
|
|
end
|