Replace RE with glob expressions

This commit is contained in:
Kernc 2014-03-01 21:13:31 +01:00
parent 0ff0ece5e2
commit a8c872671c

View file

@ -100,10 +100,10 @@ zstyle -e ':completion:*:hosts' hosts 'reply=(
# Don't complete uninteresting users... # Don't complete uninteresting users...
zstyle ':completion:*:*:*:users' ignored-patterns nobody nobody4 noaccess '_*' \ zstyle ':completion:*:*:*:users' ignored-patterns nobody nobody4 noaccess '_*' \
$([[ $OSTYPE =~ solaris ]] && max_uid=100 || max_uid=500 $([[ $OSTYPE = *(linux|darwin|cygwin)* ]] && min_uid=500 || min_uid=100
IFS=: IFS=:
while read user pass uid remainder; do while read -r user pass uid remainder; do
[[ ! $user =~ (^#|root) ]] && ((uid < max_uid)) && echo $user [[ "$user" != (\#*|root) ]] && ((uid < min_uid)) && echo $user
done </etc/passwd done </etc/passwd
) )