nnn/plugins/uidgid

13 lines
340 B
Plaintext
Raw Normal View History

2019-10-02 18:46:44 +00:00
#!/usr/bin/env sh
# Description: list uid and gid of files
#
2020-11-14 13:53:09 +00:00
# Note: To list UID and GID of all users in a pretty format, run:
# cut -d':' -f1,3,4,5 < /etc/passwd | column -ts ":"
#
2019-10-02 18:46:44 +00:00
# Shell: POSIX compliant
2020-05-06 05:12:29 +00:00
# Authors: Arun Prakash Jana, superDuperCyberTechno
2019-10-02 18:46:44 +00:00
2019-11-21 20:44:25 +00:00
# shellcheck disable=SC2012
2019-10-02 20:54:08 +00:00
ls -lah --group-directories-first | less