I have a home directory in my unix block. I would like to set a number or shortcuts in it to indicate the last file in another directory, and the link will be updated if a newer file is created.
Is it possible?
So far I can get the latest file:
ls -lrt | tail -n1
thank
[EDIT]
Perhaps I could create a wrapper instead of softlink, which will find the last file and return it so that I can open / grep / delete, etc.
Mick source
share