Looking for a command that will return the single most recent file in a directory.
Not seeing a limit parameter to ls...
ls
Recursively:
find $1 -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head