mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 03:13:37 +08:00
908ed493cc
Before this change the function `__fish_print_filesystems` would print an error message about an empty wildcard match for the pattern `$PATH/mount.*`, if the current operating system does not include any helper binaries for the command `mount`. An example for such an OS is the current version of macOS (version 10.12).
11 lines
547 B
Fish
11 lines
547 B
Fish
|
|
function __fish_print_filesystems -d "Print a list of all known filesystem types"
|
|
set -l fs adfs affs autofs coda coherent cramfs devpts efs ext ext2 ext3
|
|
set fs $fs hfs hpfs iso9660 jfs minix msdos ncpfs nfs ntfs proc qnx4 ramfs
|
|
set fs $fs reiserfs romfs smbfs sysv tmpfs udf ufs umsdos vfat xenix xfs xiafs
|
|
# Mount has helper binaries to mount filesystems
|
|
# These are called mount.* and are placed somewhere in $PATH
|
|
set -l mountfs $PATH/mount.*
|
|
printf '%s\n' $fs (string replace -ra '.*/mount.' '' -- $mountfs)
|
|
end
|