finding last edited file on unix CLI
to find last edited file in a folder on unix CLI:
1 |
`ls -1t | head -1` |
to edit the file:
1 |
more `ls -1t | head -1` |
to find last edited file in a folder on unix CLI:
1 |
`ls -1t | head -1` |
to edit the file:
1 |
more `ls -1t | head -1` |