mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
4 lines
158 B
Bash
Executable file
4 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 } }'
|