mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +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
|
getent passwd | cut -d : -f 1,5 | string replace -r ':' \t
|
||||||
else if test -x /usr/bin/dscl
|
else if test -x /usr/bin/dscl
|
||||||
dscl . -list /Users RealName | string match -r -v '^_' | string replace -r ' {2,}' \t
|
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
|
string match -v -r '^\s*#' </etc/passwd | cut -d : -f 1,5 | string replace ':' \t
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@ function __fish_print_users --description "Print a list of local users"
|
||||||
getent passwd | cut -d : -f 1
|
getent passwd | cut -d : -f 1
|
||||||
else if test -x /usr/bin/dscl # OS X support
|
else if test -x /usr/bin/dscl # OS X support
|
||||||
dscl . -list /Users | string match -r -v '^_'
|
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
|
string match -v -r '^\w*#' </etc/passwd | cut -d : -f 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue