aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_mounted.fish
blob: a7cfc0dec9dae32fc034b85cc8ac7b330316b300 (plain)
1
2
3
4
function __fish_print_mounted --description 'Print mounted devices'
	cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/"

end