aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_users.fish
blob: fa8e0d17461695c902b72acc9af1c15b33367f1e (plain)
1
2
3
4
5

function __fish_print_users --description "Print a list of local users"
	cat /etc/passwd | cut -d : -f 1
end