blob: b7711224d170bc9c29629072aed3461ae5e21671 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 "$@"
}
|