blob: a73acae03e7f30b13a62a9c78045945976c815f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env sh
# Description: list uid and gid of files
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana, superDuperCyberTechno
# shellcheck disable=SC2012
ls -lah --group-directories-first | less
|