How to list files that’s human readable in GB.

<pre lang="bash">
ls -lrt --block-size=G
  • l = long format
  • t = sort time/date
  • r = reverse order
  • –block-size=M (Mb) or G (Gb)