mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 03:33:16 +08:00
6 lines
111 B
Fish
6 lines
111 B
Fish
|
|
function __fish_print_users --description "Print a list of local users"
|
|
cat /etc/passwd | cut -d : -f 1
|
|
end
|
|
|