2015-09-26 09:38:48 +00:00
|
|
|
#
|
|
|
|
# Completions for the ls command and its aliases
|
|
|
|
#
|
2006-01-14 13:16:07 +00:00
|
|
|
|
2015-09-26 09:38:48 +00:00
|
|
|
# Shared ls switches
|
2018-11-25 11:01:02 +00:00
|
|
|
set -l uname (uname -s)
|
|
|
|
test "$uname" != SunOS
|
2019-05-05 10:53:09 +00:00
|
|
|
and complete -c ls -s S -d "Sort by size"
|
2018-11-23 18:31:51 +00:00
|
|
|
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s 1 -d "List one entry per line"
|
|
|
|
complete -c ls -s c -d "Sort by changed time, (-l) show ctime"
|
|
|
|
complete -c ls -s C -d "Force multi-column output"
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s f -d "Unsorted output, enables -a"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s l -d "Long listing format"
|
|
|
|
complete -c ls -s m -d "Comma-separated format, fills across screen"
|
|
|
|
complete -c ls -s t -d "Sort by modified time, most recent first"
|
|
|
|
complete -c ls -s u -d "Sort by access time, (-l) show atime"
|
|
|
|
complete -c ls -s x -d "Multi-column output, horizontally listed"
|
2018-11-23 18:31:51 +00:00
|
|
|
|
2015-09-26 09:38:48 +00:00
|
|
|
|
|
|
|
# Test if we are using GNU ls
|
2018-11-25 11:01:02 +00:00
|
|
|
if ls --version >/dev/null 2>/dev/null
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s a -l all -d "Show hidden"
|
|
|
|
complete -c ls -s A -l almost-all -d "Show hidden except . and .."
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s b -l escape -d "Octal escapes for non-graphic characters"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s d -l directory -d "List directories, not their content"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s F -l classify -d "Append filetype indicator (*/=>@|)"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s h -l human-readable -d "Human readable sizes"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s H -l dereference-command-line -d "Follow symlinks"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s i -l inode -d "Print inode number of files"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s k -d "Set blocksize to 1kB" # BSD ls -k enables blocksize *output*
|
|
|
|
complete -c ls -s L -l dereference -d "Follow symlinks"
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s n -l numeric-uid-gid -d "Long format, numeric UIDs and GIDs"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s p -l file-type -d "Append filetype indicator"
|
|
|
|
complete -c ls -s q -l hide-control-chars -d "Replace non-graphic characters with '?'"
|
|
|
|
complete -c ls -s r -l reverse -d "Reverse sort order"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s R -l recursive -d "List subdirectory recursively"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s s -l size -d "Print size of files"
|
2015-09-26 09:38:48 +00:00
|
|
|
|
|
|
|
# GNU specific ls switches
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l author -d "Print author"
|
|
|
|
complete -c ls -s B -l ignore-backups -d "Ignore files ending with ~"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -l block-size -x -d "Set block size"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l color -f -a "never always auto" -d "Use colors"
|
|
|
|
complete -c ls -s D -l dired -d "Generate dired output"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -l dereference-command-line-symlink-to-dir #-d "Follow directory symlinks from command line"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l format -x -a "across commas horizontal long single-column verbose vertical" -d "List format"
|
|
|
|
complete -c ls -l full-time -d "Long format, full-iso time"
|
|
|
|
complete -c ls -s G -l no-group -d "Don't print group information"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -l group-directories-first -r -d "Group directories before files"
|
|
|
|
complete -c ls -l hide -r -d "Do not list implied entries matching specified shell pattern"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s I -l ignore -r -d "Skip entries matching pattern"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -l indicator-style -x -a "none classify file-type" -d "Append filetype indicator"
|
|
|
|
complete -c ls -l lcontext -d "Display security context"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s N -l literal -d "Print raw entry names"
|
|
|
|
complete -c ls -s o -d "Long format without groups"
|
|
|
|
complete -c ls -s Q -l quote-name -d "Enclose entry in quotes"
|
|
|
|
complete -c ls -l quoting-style -x -a "literal locale shell shell-always c escape" -d "Select quoting style"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -l scontext -d "Display only security context and file name"
|
|
|
|
complete -c ls -l si -d "Human readable sizes, powers of 1000"
|
|
|
|
complete -c ls -l show-control-chars -d "Non-graphic characters printed as-is"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l sort -x -d "Sort criteria" -a "
|
2015-09-26 09:38:48 +00:00
|
|
|
extension\t'Sort by file extension'
|
|
|
|
none\tDon\'t\ sort
|
|
|
|
size\t'Sort by size'
|
|
|
|
time\t'Sort by modification time'
|
|
|
|
version\t'Sort by version'
|
|
|
|
status\t'Sort by file status modification time'
|
|
|
|
atime\t'Sort by access time'
|
|
|
|
access\t'Sort by access time'
|
|
|
|
use\t'Sort by access time'
|
|
|
|
"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s T -l tabsize -x -a "1 2 3 4 5 6 7 8 9 10 11 12" -d "Assume tab stops at each COLS"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l time -x -d "Show time type" -a "
|
2015-09-26 09:38:48 +00:00
|
|
|
time\t'Sort by modification time'
|
|
|
|
access\t'Sort by access time'
|
|
|
|
use\t'Sort by use time'
|
|
|
|
ctime\t'Sort by file status modification time'
|
|
|
|
status\t'Sort by status time'
|
|
|
|
"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l time-style -x -a "full-iso long-iso iso locale" -d "Select time style"
|
|
|
|
complete -c ls -s U -d "Do not sort"
|
|
|
|
complete -c ls -s v -d "Sort by version"
|
|
|
|
complete -c ls -s w -l width -x -d "Assume screen width"
|
|
|
|
complete -c ls -s X -d "Sort by extension"
|
2021-08-24 17:29:32 +00:00
|
|
|
complete -c ls -s Z -l context -d "Display security context so it fits on most displays"
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -l help -d "Display help and exit"
|
|
|
|
complete -c ls -l version -d "Display version and exit"
|
2021-08-24 17:29:32 +00:00
|
|
|
|
2015-09-26 09:38:48 +00:00
|
|
|
else
|
2018-11-25 11:01:02 +00:00
|
|
|
#### ls on eunichs ####
|
2018-11-23 18:31:51 +00:00
|
|
|
# From latest checked-in man pages as of Nov 2018.
|
|
|
|
# Reformatted with Open Group's ordering and spacing,
|
|
|
|
# then sorted by prevelance, consolidating option
|
|
|
|
# matches.
|
2015-09-26 09:38:48 +00:00
|
|
|
|
2018-11-25 11:01:02 +00:00
|
|
|
# [ IEEE 1003.1-2017 options ] [ extension options ]
|
2018-11-25 11:43:53 +00:00
|
|
|
# freebsd: ls -[ikqrs][glno][Aa][Cmx1][Fp][LH][Rd][Sft][cu] [hbTBWwPUG ZyI, ] [-D format] [--color=when] [file ...]
|
|
|
|
# netbsd: ls -[ikqrs][glno][Aa][Cmx1][Fp][L ][Rd][Sft][cu] [hbTBWwP XMO ] [file ...]
|
|
|
|
# macOS: ls -[ikqrs][glno][Aa][Cmx1][Fp][LH][Rd][Sft][cu] [hbTBWwPUG Oe@ ] [file ...]
|
|
|
|
# openbsd: ls -[ikqrs][glno][Aa][Cmx1][Fp][LH][Rd][Sft][cu] [ TB ] [file ...]
|
|
|
|
# solaris: ls -[i qrs][glno][Aa][Cmx1][Fp][LH][Rd][ ft][cu] [hb e@EvV] [file ...]
|
2018-11-23 18:31:51 +00:00
|
|
|
|
|
|
|
# netbsd ls -O: only leaf files, no dirs | macos ls -O: include file flags in -l output
|
|
|
|
# so: don't complete -H for netbsd, and return early after the ls -P completion.
|
2018-11-25 11:01:02 +00:00
|
|
|
# But not before adding their -X, -M, -O options. Same kind of thing for the other OSes.
|
2018-11-23 18:31:51 +00:00
|
|
|
|
|
|
|
## IEEE 1003.1-2017 standard options:
|
|
|
|
|
|
|
|
complete -c ls -s i -d "Show inode numbers for files"
|
2018-11-25 11:01:02 +00:00
|
|
|
test "$uname" != SunOS
|
2019-05-05 10:53:09 +00:00
|
|
|
and complete -c ls -s k -d "for -s: Display sizes in kB, not blocks" # GNU sets block size with -k
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -c ls -s q -d "Replace non-graphic characters with '?'"
|
|
|
|
complete -c ls -s r -d "Reverse sort order"
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s s -d "Show file sizes"
|
|
|
|
|
|
|
|
complete -c ls -s g -d "Show group instead of owner in long format"
|
|
|
|
complete -c ls -s n -d "Long format, numerical UIDs and GIDs"
|
2018-11-25 11:01:02 +00:00
|
|
|
contains "$uname" FreeBSD NetBSD OpenBSD DragonFly
|
2019-05-05 10:53:09 +00:00
|
|
|
and complete -c ls -o o -d "Long format, show file flags" # annoying BSD
|
|
|
|
or complete -c ls -s o -d "Long format, omit group names" # annoying POSIX
|
2018-11-23 18:31:51 +00:00
|
|
|
|
|
|
|
complete -c ls -s A -d "Show hidden except . and .."
|
|
|
|
complete -c ls -s a -d "Show hidden entries"
|
|
|
|
|
|
|
|
# -C in common, -m in common, -x in common, -1 in common
|
|
|
|
|
|
|
|
complete -c ls -s F -d "Append indicators. dir/ exec* link@ socket= fifo| whiteout%"
|
|
|
|
complete -c ls -s p -d "Append directory indicators"
|
|
|
|
|
|
|
|
complete -c ls -s L -d "Follow all symlinks Cancels -P option"
|
|
|
|
test "$uname" != NetBSD
|
2019-05-05 10:53:09 +00:00
|
|
|
and complete -c ls -s H -d "Follow symlink given on commandline" # not present on netbsd
|
2018-11-23 18:31:51 +00:00
|
|
|
|
|
|
|
complete -c ls -s R -d "Recursively list subdirectories"
|
|
|
|
complete -c ls -s d -d "List directories, not their content"
|
|
|
|
|
|
|
|
# -S in common, -f in common, -t in common
|
|
|
|
# -c in common, -u in common
|
2018-11-25 11:01:02 +00:00
|
|
|
## These options are not standardized:
|
2021-11-23 13:45:28 +00:00
|
|
|
if test "$uname" != OpenBSD
|
2018-11-25 11:43:53 +00:00
|
|
|
complete -c ls -s h -d "Human-readable sizes"
|
2018-11-25 11:12:44 +00:00
|
|
|
complete -c ls -s b -d "C escapes for non-graphic characters"
|
2021-11-23 13:45:28 +00:00
|
|
|
if test "$uname" = SunOS
|
2018-11-25 11:43:53 +00:00
|
|
|
complete -c ls -s e -d "Like -l, but fixed time format with seconds"
|
|
|
|
complete -c ls -s @ -d "Like -l, but xattrs shown instead of ACLs"
|
|
|
|
complete -c ls -s E -d "Like -l, but fixed time format with nanoseconds"
|
|
|
|
complete -c ls -s v -d "Like -l, but verbose ACL information shown as well as -l output"
|
|
|
|
complete -c ls -s V -d "Like -l, but compact ACL information printed after -l output"
|
|
|
|
exit 0
|
|
|
|
end
|
|
|
|
else
|
|
|
|
exit 0 # OpenBSD
|
2018-11-23 18:31:51 +00:00
|
|
|
end
|
2018-11-25 11:43:53 +00:00
|
|
|
complete -c ls -s T -d "for -l: Show complete date and time"
|
|
|
|
complete -c ls -s B -d "Octal escapes for non-graphic characters"
|
|
|
|
complete -c ls -s W -d "Display whiteouts when scanning directories"
|
|
|
|
complete -c ls -s w -d "Force raw printing of non-printable characters"
|
|
|
|
complete -c ls -s P -d "Don't follow symlinks"
|
2018-11-23 18:31:51 +00:00
|
|
|
switch "$uname"
|
2018-11-25 15:50:10 +00:00
|
|
|
case NetBSD
|
2018-11-25 11:43:53 +00:00
|
|
|
complete -c ls -s X -d "Don't cross mount points when recursing"
|
|
|
|
complete -c ls -s M -d "for -l, -s: Format size/count with commas"
|
|
|
|
complete -c ls -s O -d "Show only leaf files (not dirs), eliding other output"
|
|
|
|
exit 0
|
2018-11-25 15:50:10 +00:00
|
|
|
case Darwin
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s O -d "for -l: Show file flags"
|
|
|
|
complete -c ls -s e -d "for -l: Print ACL associated with file, if present"
|
2018-11-25 11:01:02 +00:00
|
|
|
complete -c ls -s @ -d "for -l: Display extended attributes"
|
2018-11-25 15:50:10 +00:00
|
|
|
case FreeBSD
|
2018-11-23 18:31:51 +00:00
|
|
|
complete -c ls -s Z -d "Display each file's MAC label"
|
|
|
|
complete -c ls -s y -d "for -t: Sort A-Z output in same order as time output"
|
|
|
|
complete -c ls -s I -d "Prevent -A from being automatically set for root"
|
|
|
|
complete -c ls -s , -d "for -l: Format size/count number groups with ,/locale"
|
|
|
|
complete -r -c ls -s D -d "for -l: Format date with strptime string"
|
|
|
|
complete -c ls -l color -f -a "auto always never" -d "Enable color output"
|
|
|
|
end
|
2018-11-25 11:01:02 +00:00
|
|
|
complete -c ls -s U -d "Sort (-t) by creation time and show time (-l)"
|
|
|
|
complete -c ls -s G -d "Enable colorized output" # macos, freebsd.
|
2015-09-26 09:38:48 +00:00
|
|
|
end
|