My build of nnn with minor changes
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345678910111213
  1. #!/usr/bin/env sh
  2. # Description: list uid and gid of files
  3. #
  4. # Note: To list UID and GID of all users in a pretty format, run:
  5. #
  6. # cut -d':' -f1,3,4,5 < /etc/passwd | column -ts ":"
  7. #
  8. # Shell: POSIX compliant
  9. # Authors: Arun Prakash Jana, superDuperCyberTechno
  10. # shellcheck disable=SC2012
  11. ls -lah --group-directories-first | less