mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
9 lines
194 B
Fish
9 lines
194 B
Fish
|
|
function __fish_print_users --description "Print a list of local users"
|
|
if test -x /usr/bin/getent
|
|
getent passwd | cut -d : -f 1
|
|
else
|
|
sgrep -ve '^#' /etc/passwd | cut -d : -f 1
|
|
end
|
|
end
|
|
|