mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
Aucompletion guards for /etc/passwd #3980
This commit is contained in:
parent
30e02383a5
commit
bea0b17c9e
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -4,7 +4,7 @@ function __fish_print_users --description "Print a list of local users"
|
|||
getent passwd | cut -d : -f 1
|
||||
else if test -x /usr/bin/dscl # OS X support
|
||||
dscl . -list /Users | string match -r -v '^_'
|
||||
else
|
||||
else if test -e /etc/passwd
|
||||
string match -v -r '^\w*#' </etc/passwd | cut -d : -f 1
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue