Skip to main content
Markup and formatting.
Source Link
Kusalananda
  • 355.8k
  • 42
  • 735
  • 1.1k

To List all pngPNG and jpg fileJPEG files which are 7 days old with absolute path. Here you.

$ find $PWD/ -mtime -7 -print -exec grep -e ".png\|.jpg" {} \;

Here $PWD$PWD will be added to every file matched.

find $PWD/ -mtime -7 -print -exec grep -e ".png|.jpg" {} ;

To List all png and jpg file which are 7 days old with absolute path. Here you. Here $PWD will be added to every file matched.

find $PWD/ -mtime -7 -print -exec grep -e ".png|.jpg" {} ;

To List all PNG and JPEG files which are 7 days old with absolute path.

$ find $PWD/ -mtime -7 -print -exec grep -e ".png\|.jpg" {} \;

Here $PWD will be added to every file matched.

Source Link
aty
  • 101

To List all png and jpg file which are 7 days old with absolute path. Here you. Here $PWD will be added to every file matched.

find $PWD/ -mtime -7 -print -exec grep -e ".png|.jpg" {} ;