I want to search a certain directory (e.g. Desktop) to see if any files have been modified since they were last read. If modified files were found, I want to display the files' names, modified dates, and modified lines. Or display "No Modified Files Found" if none were found.
I know the following code
$ find /home/you/Desktop stat
will display all modified files, but how do you display the modified dates and modified lines of the file?
Also, is there a way to do the same thing, without the "find" command? For example, with the ls command?