mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
11 lines
100 B
Bash
11 lines
100 B
Bash
#! /usr/local/bin/ksh93 -p
|
|
|
|
a=
|
|
g=
|
|
for i in $*
|
|
do
|
|
a="$a $g"
|
|
g=$i
|
|
done
|
|
|
|
/usr/sbin/pw usermod $g $a
|