Ubuntu – Show recent modified/created files using Terminal

command linefilesgnome-terminal

Is there any command to display the recently modified/created files?

Which one…?

Best Answer

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

find ${1} -type f | xargs stat --format '%Y :%y %n' 2>/dev/null | sort -nr | cut -d: -f2-

See Find command

Source:Linux