• Max-P@lemmy.max-p.me
    link
    fedilink
    arrow-up
    3
    ·
    30 days ago

    Your grep is getting the output of find piped into it, so there’s nothing in the find command itself (which has the -exec in there) to filter it down so it applies to everything find finds. You’re filtering for ‘Aug 18’ after find has already -exec the cp -ltr command.

    You probably want this:

    find . -name '*-FLAIR' -name '*Aug 18*' -type d -ls -exec cp -lr -t ../../../media_links/ {} \;
    
    • LucidBoi@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      1
      ·
      30 days ago

      Oh the files don’t have the date in their names. Is -name still gonna work with ‘Aug 18’? I’m parsing for the date shown by -ls.