finding last edited file on unix CLI

to find last edited file in a folder on unix CLI:

`ls -1t | head -1`

to edit the file:

more `ls -1t | head -1`
Scroll to Top