mirror of
https://github.com/CISOfy/lynis.git
synced 2025-04-08 17:15:25 +02:00
5 lines
158 B
Bash
Executable File
5 lines
158 B
Bash
Executable File
#!/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 } }'
|