mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
5 lines
202 B
Fish
5 lines
202 B
Fish
|
|
||
|
function __fish_complete_users --description "Print a list of local users, with the real user name as a description"
|
||
|
cat /etc/passwd | sed -e "s/^\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):.*/\1\t\2/"
|
||
|
end
|