Untitled
unknown
plain_text
a year ago
183 B
6
Indexable
#!/bin/bash
input="users"
while read -r users; do
user=$(echo $users | awk -F, '{ print $1 }')
echo "$users" >> output.txt
ldapsearch "(cn=$users)" + >> output.txt
done < "$input"Editor is loading...
Leave a Comment