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