mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-04 04:31:14 -03:00
Aucompletion guards for /etc/passwd #3980
This commit is contained in:
committed by
Kurtis Rader
parent
30e02383a5
commit
bea0b17c9e
@@ -4,7 +4,7 @@ function __fish_complete_users --description "Print a list of local users, with
|
||||
getent passwd | cut -d : -f 1,5 | string replace -r ':' \t
|
||||
else if test -x /usr/bin/dscl
|
||||
dscl . -list /Users RealName | string match -r -v '^_' | string replace -r ' {2,}' \t
|
||||
else
|
||||
else if test -e /etc/passwd
|
||||
string match -v -r '^\s*#' </etc/passwd | cut -d : -f 1,5 | string replace ':' \t
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user