From 44435b60f1196bb59d34bb4b52d57450ca6d8e1e Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 1 Oct 2019 19:43:56 -0600 Subject: find duplicate uids --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 4889909..8b9252d 100644 --- a/README.md +++ b/README.md @@ -1147,5 +1147,12 @@ Rootly Powers and Processes ``` c. Find any sets of entries that have duplicate UIDs. + + ```bash + #!/bin/bash + + cat /etc/passwd | grep -v -E '^#' | awk -F: '{ print $3 }' | sort -n | uniq -d + ``` + d. Find entries that have duplicate login names. e. Find entries that have no expiration date (needs /etc/shadow). -- cgit v1.2.3