function __fish_print_mounted --description 'Print mounted devices' if test -r /etc/mtab # In mtab, spaces are replaced by a literal '\040' # So it's safe to get the second "field" and then replace it # \011 encodes a tab, \012 encodes a newline and \\ encodes a backslash # This will probably break on newlines because of our splitting, though # and tabs because of descriptions string replace -r '\S+ (\S+) .*' '$1'