Files
fish-shell/share/functions/__fish_print_filesystems.fish
Johannes Altmanninger 2c0e912fe1 Mark private functions that don't need localization
See the next commit.

Part of #11833

(cherry picked from commit a53db72564)
2025-09-30 11:52:41 +02:00

11 lines
601 B
Fish

# localization: skip(private)
function __fish_print_filesystems -d "Print a list of all known filesystem types"
set -l fs adfs affs autofs btrfs coda coherent cramfs devpts efs ext ext2 ext3 ffs
set -a fs hfs hpfs iso9660 jfs minix msdos ncpfs nfs ntfs proc qnx4 ramfs
set -a 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.* $PATH/mount_*
printf '%s\n' $fs (string replace -ra '.*/mount[._]' '' -- $mountfs)
end