mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-12 23:39:45 +08:00
5 lines
232 B
Fish
5 lines
232 B
Fish
|
|
function __fish_complete_users --description "Print a list of local users, with the real user name as a description"
|
|
cat /etc/passwd | grep -ve '^#' | sed -e 's/^\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):.*$/\1'\t'\2/' ^/dev/null
|
|
end
|