aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_users.fish
blob: 199231be17459adb35503486c06c1a578988a113 (plain)
1
2
3
4
5
6
7
8
9
10

function __fish_complete_users --description "Print a list of local users, with the real user name as a description"
	if test -x /usr/bin/getent
		getent passwd | cut -d : -f 1,5 | string replace -r ':' \t
	else if test -x /usr/bin/dscl
		dscl . -list /Users RealName | string match -r -v '^_' | string replace -r ' {2,}' \t
	else
		string match -v -r '^\s*#' < /etc/passwd | cut -d : -f 1,5 | string replace ':' \t
	end
end