aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_mounted.fish
blob: 482559a87ced5c4960c6e697b54304aba616090b (plain)
1
2
3
4
5
6
7
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