My build of nnn with minor changes
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

14 wiersze
342 B

  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