Aucompletion guards for /etc/passwd #3980

This commit is contained in:
Christian Rondeau 2017-04-23 08:13:02 -04:00 committed by Kurtis Rader
parent 30e02383a5
commit bea0b17c9e
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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