mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#/bin/bash
|
|
|
|
IFS='$'
|
|
while read dn
|
|
do
|
|
dn=`echo -n "$dn" | cut -d':' -f2`
|
|
echo $dn deleted
|
|
ldapdelete -c -x -D "cn=admin,o=unwired-portal" -w programmer "$dn"
|
|
done < /tmp/dn-list.txt
|