blob: 8e0b197ee12661e65d50c19f2c325cf9bed250f7 (
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
# Authors: Arun Prakash Jana, superDuperCyberTechno
# shellcheck disable=SC2012
ls -lah --group-directories-first | less
|