Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check-lynis.sh « extras - github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 855f35775c1176ace74a5f10b4d73595099f3633 (plain)
1
2
3
4
#!/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 } }'