Or a search string for finding all .jpg files in video folders needing updates. Could be a note to self:
Here is how we translate your shorthand into a functional command:
upd (Update Date): We need to sort by "time modified" (-t flag) and reverse the order (-r flag) so the newest files are at the bottom or top depending on preference.
This is the most common environment for these commands.
find . -type f -iname "*.jpg" -o -iname "*.mp4" -exec ls -lhS {} \;
Could be a note to self:
List files in filedot, list vids, check jpg updates
Or a search string for finding all .jpg files in video folders needing updates.
Here is how we translate your shorthand into a functional command:
upd (Update Date): We need to sort by "time modified" (-t flag) and reverse the order (-r flag) so the newest files are at the bottom or top depending on preference.