mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
14 lines
342 B
Bash
Executable file
14 lines
342 B
Bash
Executable file
#!/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
|