mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 05:57:58 +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
|
||
|
|