mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-26 22:06:35 +01:00
11 lines
210 B
Text
11 lines
210 B
Text
|
useradd()
|
||
|
{
|
||
|
ADDED_USERS=$ADDED_USERS' '$(echo "$@"|rev|cut -f1 -d' '|rev)
|
||
|
/usr/sbin/useradd "$@"
|
||
|
}
|
||
|
groupadd()
|
||
|
{
|
||
|
ADDED_GROUPS=$ADDED_GROUPS' '$(echo "$@"|rev|cut -f1 -d' '|rev)
|
||
|
/usr/sbin/groupadd "$@"
|
||
|
}
|