Unix ls command: show full path when using options

前端 未结 8 1683
故里飘歌
故里飘歌 2020-12-07 12:13

I often use this list command in Unix (AIX / KSH):

ls -Artl

It displays the files as this:

-rw-r--r-- 1 myuser mygroup 0 Apr 2

8条回答
  •  伪装坚强ぢ
    2020-12-07 12:52

    optimized from spacedrop answer ...

    ls $(pwd)/*
    

    and you can use ls options

    ls -alrt $(pwd)/*
    

提交回复
热议问题