| DIR:/proc/thread-self/root/proc/self/root/opt/cpguard/3rdparty/lynis/extras/ |
| Current File : //proc/thread-self/root/proc/self/root/opt/cpguard/3rdparty/lynis/extras/check-lynis.sh |
#!/bin/sh
# Check for double ID numbers
grep -r Register .. | awk '{ if($2=="Register") { print $4 } }' | sort | uniq -c | awk '{ if ($1!=1) { print $2 } }'
|