aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/uidgid
blob: d72f1e0a4f1bbb7c362390f69f1fcef548637450 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh

# Description: list uid and gid of files
#
# Note: To list UID and GID of all users in a pretty format, run:
#
#           cut -d':' -f1,3,4,5 < /etc/passwd | column -ts ":"
#
# Shell: POSIX compliant
# Authors: Arun Prakash Jana, superDuperCyberTechno

# shellcheck disable=SC2012
ls -lah --group-directories-first | less