mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
11 lines
101 B
Bash
11 lines
101 B
Bash
#! /usr/local/bin/ksh93 -p
|
|
|
|
a=
|
|
g=
|
|
for i in $*
|
|
do
|
|
a="$a $g"
|
|
g=$i
|
|
done
|
|
|
|
/usr/sbin/pw groupmod $g $a
|