When using the find command, I would like to have the output show like the ls -l command.
using the following:
find /tmp -type f -neweram /tmp/new_file >> /home/newer_files
The results goes to a text file but shows as /tmp/file
I would like to see the file as
-rwxr--r-- username gid size date time filename
format. Is this possible with the find command. Not finding anything in the man pages that states this.
using the following:
find /tmp -type f -neweram /tmp/new_file >> /home/newer_files
The results goes to a text file but shows as /tmp/file
I would like to see the file as
-rwxr--r-- username gid size date time filename
format. Is this possible with the find command. Not finding anything in the man pages that states this.