unix ls by agentcooper

50a1c1f2651b478f8cb8bff34ad41515?size=52
alias l='ls -trlah'

more productive ls:

  • -tr to sort modified asc, last modified will be in the end of output
  • -l for permissions
  • -a for hidden 'dot' files
  • -h for human readable size

#unix #bash