Get most recent file in a directory on Linux

前端 未结 21 2373
余生分开走
余生分开走 2020-11-27 09:24

Looking for a command that will return the single most recent file in a directory.

Not seeing a limit parameter to ls...

21条回答
  •  無奈伤痛
    2020-11-27 09:52

    Presuming you don't care about hidden files that start with a .

    ls -rt | tail -n 1
    

    Otherwise

    ls -Art | tail -n 1
    

提交回复
热议问题