Looking for a command that will return the single most recent file in a directory.
Not seeing a limit parameter to ls...
ls
ls -t | head -n1
This command actually gives the latest modified file in the current working directory.