Filter a file list against an integer array?How to put the specific files from a directory in an array in bash?How do I aggregate data from many files into one file?How to sum match numbersseparation of files on the basis of their nameFTP script - upload several files with match local folders/ftp foldersUsing awk to process multiple files need to count occurance of variable after pattern. How can I stop array resetting after each file?How to add values to an array which contains a variable in the array name in bash?bash script load an modify array from external filetar “Cannot stat: No such file of directory” when passing array variablesbash command to create array with the 10 most recent images in a dir?

Building a road to escape Earth's gravity by making a pyramid on Antartica

Does any lore text explain why the planes of Acheron, Gehenna, and Carceri are the alignment they are?

What is the right way to float a home lab?

Did Darth Vader wear the same suit for 20+ years?

Can you please explain this joke: "I'm going bananas is what I tell my bananas before I leave the house"?

Prove that a function is indefinitely differentiable

1980s (or earlier) book where people live a long time but they have short memories

Is there any word or phrase for negative bearing?

Chopin: marche funèbre bar 15 impossible place

Credit card offering 0.5 miles for every cent rounded up. Too good to be true?

Opposite of "Squeaky wheel gets the grease"

Linux tr to convert vertical text to horizontal

What happened to all the nuclear material being smuggled after the fall of the USSR?

Riley's, assemble!

Can Green-Flame Blade be cast twice with the Hunter ranger's Horde Breaker ability?

What does War Machine's "Canopy! Canopy!" line mean in "Avengers: Endgame"?

My coworkers think I had a long honeymoon. Actually I was diagnosed with cancer. How do I talk about it?

Bent spoke design wheels — feasible?

Will TSA allow me to carry a Continuous Positive Airway Pressure (CPAP) device?

What is the advantage of carrying a tripod and ND-filters when you could use image stacking instead?

Replace only 2nd, 3rd, nth...character and onwards

How to make thick Asian sauces?

You've spoiled/damaged the card

PhD student with mental health issues and bad performance



Filter a file list against an integer array?


How to put the specific files from a directory in an array in bash?How do I aggregate data from many files into one file?How to sum match numbersseparation of files on the basis of their nameFTP script - upload several files with match local folders/ftp foldersUsing awk to process multiple files need to count occurance of variable after pattern. How can I stop array resetting after each file?How to add values to an array which contains a variable in the array name in bash?bash script load an modify array from external filetar “Cannot stat: No such file of directory” when passing array variablesbash command to create array with the 10 most recent images in a dir?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















I have a folder with lots of images named "clip01234-randomlongstring.png", where 01234 is a random five digit number.
I also have an array "clipnumbers" with a list of integers.



Now I want to create a list "files" containing all file names which match the numbers in the "clipnumbers" array. How would I do that?



The resulting output should be something I can process in the same way as my current list (of all files) I create with:
files=($(printf "%sn" *.* | sort -V | tr 'n' ' '))










share|improve this question






























    2















    I have a folder with lots of images named "clip01234-randomlongstring.png", where 01234 is a random five digit number.
    I also have an array "clipnumbers" with a list of integers.



    Now I want to create a list "files" containing all file names which match the numbers in the "clipnumbers" array. How would I do that?



    The resulting output should be something I can process in the same way as my current list (of all files) I create with:
    files=($(printf "%sn" *.* | sort -V | tr 'n' ' '))










    share|improve this question


























      2












      2








      2








      I have a folder with lots of images named "clip01234-randomlongstring.png", where 01234 is a random five digit number.
      I also have an array "clipnumbers" with a list of integers.



      Now I want to create a list "files" containing all file names which match the numbers in the "clipnumbers" array. How would I do that?



      The resulting output should be something I can process in the same way as my current list (of all files) I create with:
      files=($(printf "%sn" *.* | sort -V | tr 'n' ' '))










      share|improve this question
















      I have a folder with lots of images named "clip01234-randomlongstring.png", where 01234 is a random five digit number.
      I also have an array "clipnumbers" with a list of integers.



      Now I want to create a list "files" containing all file names which match the numbers in the "clipnumbers" array. How would I do that?



      The resulting output should be something I can process in the same way as my current list (of all files) I create with:
      files=($(printf "%sn" *.* | sort -V | tr 'n' ' '))







      bash shell-script filenames array






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 19 at 0:14









      Jeff Schaller

      46.2k1166150




      46.2k1166150










      asked May 18 at 21:45









      user3647558user3647558

      375




      375




















          5 Answers
          5






          active

          oldest

          votes


















          6














          In a loop:



          shopt -s nullglob

          files=()
          for number in "$clipnumbers[@]"; do
          printf -v pattern 'clip%s-*.png' "$number"
          files+=( $pattern )
          done


          This loops over the numbers and creates a filename globbing pattern for each. The pattern is expanded to add the filenames matching it to the array files. The nullglob shell option makes non-matching patterns expand to nothing (as opposed to remain unexpanded).




          Using find (for recursion into all directories beneath the current directory, and for performing some action on each found file):



          patterns=()
          for number in "$clipnumbers[@]"; do
          printf -v pattern 'clip%s-*.png' "$number"
          patterns+=( -o -name "$pattern" )
          done

          find . -type f ( "$patterns[@]:1" ) -exec action-to-perform-on-files ;


          The :1 removes the initial -o from the list in patterns in the expansion.



          This combines searching for the files with performing some action on them. It would fail if your clipnumbers array contains many thousands of numbers (the argument list would become too long).






          share|improve this answer

























          • oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

            – user3647558
            May 19 at 1:09


















          3














          Option #1



          Similar to Kusalananda's answer but with array expansion instead of a loop:



          setup



          $ touch clip12710-x.png clip30443-x.png clip57592-x.png clip76672-x.png clip93493-x.png
          $ declare -a array=([0]="30443" [1]="76672" [2]="42424")


          Note that the array contains only two items that are expected to match; there are filenames with clips that are not present and there are clip numbers in array that do not exist as filenames.



          execution



          $ shopt -s nullglob
          $ pfiles=( "$array[@]/#/clip" )
          $ oIFS="$IFS"
          $ IFS=
          $ pfiles=( $pfiles[@]/%/-*.png )
          $ IFS="$oIFS"
          $ declare -p pfiles
          declare -a pfiles=([0]="clip30443-x.png" [1]="clip76672-x.png")


          Note the careful inclusion of double-quotes in the first assignment and the lack of double-quotes in the second assignment. The initial assignment translates the "array" array of numbers into a "pfiles" array of partial filenames by prepending the string clip to each element. The second assignment appends the -*.png wildcard to each element of the array; the lack of quoting in this assignment allows the shell to split each element on $IFS (normally space, tab, and newline), but we've temporarily overridden IFS to be empty. The shell then also "globs" the results, which is what we want here -- for it to expand the "clip...*-png" names into any matching filenames. With the nullglob shell option set, any non-matching wildcards are dropped. The final result is an array in pfiles of files matching clip numbers from your original array.




          Option #2



          (ab)use extended globbing:



          shopt -s extglob nullglob
          declare -a array=([0]="30443" [1]="76672" [2]="42424")
          oIFS="$IFS"
          IFS='|'
          p="$array[*]"
          IFS="$oIFS"
          pfiles=( clip@($p)-*.png )


          This works by setting IFS to the pipe symbol | so that the subsequent assignment to p of array[*] joins the elements of array by pipes (the first character of $IFS at that point). Pipes are the delimiters that bash's extended globbing syntax requires between options in an extended globbing pattern. The last line expands to an array of files that match the extended glob pattern we've constructed:



          • start with clip

          • contain one of the given patterns (clip numbers), now contained in the variable p

          • followed by - then anything

          • and ending in .png

          The nullglob shell option is required in case your clips array does not overlap with any existing filenames.






          share|improve this answer






























            2














            With zsh:



            clipnumbers=(01234 33333)
            files=(clip$^clipnumbers-*.png(N.))


            That expands one glob per clip number. Alternatively, you could turn the array into a glob alternation operator:



            files=(clip($(j:)-*.png(N.))





            share|improve this answer
































              1














              Using GNU grep and printf:



              grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png


              Which can be assigned to an array like so:



              files=($(grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png))





              share|improve this answer






























                1














                mapfile -t files < <( shopt -s nullglob ; printf "%sn" $(printf "clip%s-*.png " "$clipnumbers[@]" ) )



                • mapfile -t files read lines into files as an array, strip trailing line break.


                • shopt -s nullglob expand non existing pattern to a null string


                • printf "%sn" ... expand patterns, one per line.


                • $(printf "clip%s-*.png " "$arr[@]") ) build patterns.





                share|improve this answer























                  Your Answer








                  StackExchange.ready(function()
                  var channelOptions =
                  tags: "".split(" "),
                  id: "106"
                  ;
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function()
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled)
                  StackExchange.using("snippets", function()
                  createEditor();
                  );

                  else
                  createEditor();

                  );

                  function createEditor()
                  StackExchange.prepareEditor(
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: false,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: null,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader:
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  ,
                  onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  );



                  );













                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function ()
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f519734%2ffilter-a-file-list-against-an-integer-array%23new-answer', 'question_page');

                  );

                  Post as a guest















                  Required, but never shown

























                  5 Answers
                  5






                  active

                  oldest

                  votes








                  5 Answers
                  5






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  6














                  In a loop:



                  shopt -s nullglob

                  files=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  files+=( $pattern )
                  done


                  This loops over the numbers and creates a filename globbing pattern for each. The pattern is expanded to add the filenames matching it to the array files. The nullglob shell option makes non-matching patterns expand to nothing (as opposed to remain unexpanded).




                  Using find (for recursion into all directories beneath the current directory, and for performing some action on each found file):



                  patterns=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  patterns+=( -o -name "$pattern" )
                  done

                  find . -type f ( "$patterns[@]:1" ) -exec action-to-perform-on-files ;


                  The :1 removes the initial -o from the list in patterns in the expansion.



                  This combines searching for the files with performing some action on them. It would fail if your clipnumbers array contains many thousands of numbers (the argument list would become too long).






                  share|improve this answer

























                  • oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                    – user3647558
                    May 19 at 1:09















                  6














                  In a loop:



                  shopt -s nullglob

                  files=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  files+=( $pattern )
                  done


                  This loops over the numbers and creates a filename globbing pattern for each. The pattern is expanded to add the filenames matching it to the array files. The nullglob shell option makes non-matching patterns expand to nothing (as opposed to remain unexpanded).




                  Using find (for recursion into all directories beneath the current directory, and for performing some action on each found file):



                  patterns=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  patterns+=( -o -name "$pattern" )
                  done

                  find . -type f ( "$patterns[@]:1" ) -exec action-to-perform-on-files ;


                  The :1 removes the initial -o from the list in patterns in the expansion.



                  This combines searching for the files with performing some action on them. It would fail if your clipnumbers array contains many thousands of numbers (the argument list would become too long).






                  share|improve this answer

























                  • oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                    – user3647558
                    May 19 at 1:09













                  6












                  6








                  6







                  In a loop:



                  shopt -s nullglob

                  files=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  files+=( $pattern )
                  done


                  This loops over the numbers and creates a filename globbing pattern for each. The pattern is expanded to add the filenames matching it to the array files. The nullglob shell option makes non-matching patterns expand to nothing (as opposed to remain unexpanded).




                  Using find (for recursion into all directories beneath the current directory, and for performing some action on each found file):



                  patterns=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  patterns+=( -o -name "$pattern" )
                  done

                  find . -type f ( "$patterns[@]:1" ) -exec action-to-perform-on-files ;


                  The :1 removes the initial -o from the list in patterns in the expansion.



                  This combines searching for the files with performing some action on them. It would fail if your clipnumbers array contains many thousands of numbers (the argument list would become too long).






                  share|improve this answer















                  In a loop:



                  shopt -s nullglob

                  files=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  files+=( $pattern )
                  done


                  This loops over the numbers and creates a filename globbing pattern for each. The pattern is expanded to add the filenames matching it to the array files. The nullglob shell option makes non-matching patterns expand to nothing (as opposed to remain unexpanded).




                  Using find (for recursion into all directories beneath the current directory, and for performing some action on each found file):



                  patterns=()
                  for number in "$clipnumbers[@]"; do
                  printf -v pattern 'clip%s-*.png' "$number"
                  patterns+=( -o -name "$pattern" )
                  done

                  find . -type f ( "$patterns[@]:1" ) -exec action-to-perform-on-files ;


                  The :1 removes the initial -o from the list in patterns in the expansion.



                  This combines searching for the files with performing some action on them. It would fail if your clipnumbers array contains many thousands of numbers (the argument list would become too long).







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited May 18 at 22:16

























                  answered May 18 at 22:03









                  KusalanandaKusalananda

                  149k18280469




                  149k18280469












                  • oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                    – user3647558
                    May 19 at 1:09

















                  • oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                    – user3647558
                    May 19 at 1:09
















                  oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                  – user3647558
                  May 19 at 1:09





                  oh wow! i did not see the other posts yet but this here certainly works. it's beautiful! thank you so much, all of you!!!

                  – user3647558
                  May 19 at 1:09













                  3














                  Option #1



                  Similar to Kusalananda's answer but with array expansion instead of a loop:



                  setup



                  $ touch clip12710-x.png clip30443-x.png clip57592-x.png clip76672-x.png clip93493-x.png
                  $ declare -a array=([0]="30443" [1]="76672" [2]="42424")


                  Note that the array contains only two items that are expected to match; there are filenames with clips that are not present and there are clip numbers in array that do not exist as filenames.



                  execution



                  $ shopt -s nullglob
                  $ pfiles=( "$array[@]/#/clip" )
                  $ oIFS="$IFS"
                  $ IFS=
                  $ pfiles=( $pfiles[@]/%/-*.png )
                  $ IFS="$oIFS"
                  $ declare -p pfiles
                  declare -a pfiles=([0]="clip30443-x.png" [1]="clip76672-x.png")


                  Note the careful inclusion of double-quotes in the first assignment and the lack of double-quotes in the second assignment. The initial assignment translates the "array" array of numbers into a "pfiles" array of partial filenames by prepending the string clip to each element. The second assignment appends the -*.png wildcard to each element of the array; the lack of quoting in this assignment allows the shell to split each element on $IFS (normally space, tab, and newline), but we've temporarily overridden IFS to be empty. The shell then also "globs" the results, which is what we want here -- for it to expand the "clip...*-png" names into any matching filenames. With the nullglob shell option set, any non-matching wildcards are dropped. The final result is an array in pfiles of files matching clip numbers from your original array.




                  Option #2



                  (ab)use extended globbing:



                  shopt -s extglob nullglob
                  declare -a array=([0]="30443" [1]="76672" [2]="42424")
                  oIFS="$IFS"
                  IFS='|'
                  p="$array[*]"
                  IFS="$oIFS"
                  pfiles=( clip@($p)-*.png )


                  This works by setting IFS to the pipe symbol | so that the subsequent assignment to p of array[*] joins the elements of array by pipes (the first character of $IFS at that point). Pipes are the delimiters that bash's extended globbing syntax requires between options in an extended globbing pattern. The last line expands to an array of files that match the extended glob pattern we've constructed:



                  • start with clip

                  • contain one of the given patterns (clip numbers), now contained in the variable p

                  • followed by - then anything

                  • and ending in .png

                  The nullglob shell option is required in case your clips array does not overlap with any existing filenames.






                  share|improve this answer



























                    3














                    Option #1



                    Similar to Kusalananda's answer but with array expansion instead of a loop:



                    setup



                    $ touch clip12710-x.png clip30443-x.png clip57592-x.png clip76672-x.png clip93493-x.png
                    $ declare -a array=([0]="30443" [1]="76672" [2]="42424")


                    Note that the array contains only two items that are expected to match; there are filenames with clips that are not present and there are clip numbers in array that do not exist as filenames.



                    execution



                    $ shopt -s nullglob
                    $ pfiles=( "$array[@]/#/clip" )
                    $ oIFS="$IFS"
                    $ IFS=
                    $ pfiles=( $pfiles[@]/%/-*.png )
                    $ IFS="$oIFS"
                    $ declare -p pfiles
                    declare -a pfiles=([0]="clip30443-x.png" [1]="clip76672-x.png")


                    Note the careful inclusion of double-quotes in the first assignment and the lack of double-quotes in the second assignment. The initial assignment translates the "array" array of numbers into a "pfiles" array of partial filenames by prepending the string clip to each element. The second assignment appends the -*.png wildcard to each element of the array; the lack of quoting in this assignment allows the shell to split each element on $IFS (normally space, tab, and newline), but we've temporarily overridden IFS to be empty. The shell then also "globs" the results, which is what we want here -- for it to expand the "clip...*-png" names into any matching filenames. With the nullglob shell option set, any non-matching wildcards are dropped. The final result is an array in pfiles of files matching clip numbers from your original array.




                    Option #2



                    (ab)use extended globbing:



                    shopt -s extglob nullglob
                    declare -a array=([0]="30443" [1]="76672" [2]="42424")
                    oIFS="$IFS"
                    IFS='|'
                    p="$array[*]"
                    IFS="$oIFS"
                    pfiles=( clip@($p)-*.png )


                    This works by setting IFS to the pipe symbol | so that the subsequent assignment to p of array[*] joins the elements of array by pipes (the first character of $IFS at that point). Pipes are the delimiters that bash's extended globbing syntax requires between options in an extended globbing pattern. The last line expands to an array of files that match the extended glob pattern we've constructed:



                    • start with clip

                    • contain one of the given patterns (clip numbers), now contained in the variable p

                    • followed by - then anything

                    • and ending in .png

                    The nullglob shell option is required in case your clips array does not overlap with any existing filenames.






                    share|improve this answer

























                      3












                      3








                      3







                      Option #1



                      Similar to Kusalananda's answer but with array expansion instead of a loop:



                      setup



                      $ touch clip12710-x.png clip30443-x.png clip57592-x.png clip76672-x.png clip93493-x.png
                      $ declare -a array=([0]="30443" [1]="76672" [2]="42424")


                      Note that the array contains only two items that are expected to match; there are filenames with clips that are not present and there are clip numbers in array that do not exist as filenames.



                      execution



                      $ shopt -s nullglob
                      $ pfiles=( "$array[@]/#/clip" )
                      $ oIFS="$IFS"
                      $ IFS=
                      $ pfiles=( $pfiles[@]/%/-*.png )
                      $ IFS="$oIFS"
                      $ declare -p pfiles
                      declare -a pfiles=([0]="clip30443-x.png" [1]="clip76672-x.png")


                      Note the careful inclusion of double-quotes in the first assignment and the lack of double-quotes in the second assignment. The initial assignment translates the "array" array of numbers into a "pfiles" array of partial filenames by prepending the string clip to each element. The second assignment appends the -*.png wildcard to each element of the array; the lack of quoting in this assignment allows the shell to split each element on $IFS (normally space, tab, and newline), but we've temporarily overridden IFS to be empty. The shell then also "globs" the results, which is what we want here -- for it to expand the "clip...*-png" names into any matching filenames. With the nullglob shell option set, any non-matching wildcards are dropped. The final result is an array in pfiles of files matching clip numbers from your original array.




                      Option #2



                      (ab)use extended globbing:



                      shopt -s extglob nullglob
                      declare -a array=([0]="30443" [1]="76672" [2]="42424")
                      oIFS="$IFS"
                      IFS='|'
                      p="$array[*]"
                      IFS="$oIFS"
                      pfiles=( clip@($p)-*.png )


                      This works by setting IFS to the pipe symbol | so that the subsequent assignment to p of array[*] joins the elements of array by pipes (the first character of $IFS at that point). Pipes are the delimiters that bash's extended globbing syntax requires between options in an extended globbing pattern. The last line expands to an array of files that match the extended glob pattern we've constructed:



                      • start with clip

                      • contain one of the given patterns (clip numbers), now contained in the variable p

                      • followed by - then anything

                      • and ending in .png

                      The nullglob shell option is required in case your clips array does not overlap with any existing filenames.






                      share|improve this answer













                      Option #1



                      Similar to Kusalananda's answer but with array expansion instead of a loop:



                      setup



                      $ touch clip12710-x.png clip30443-x.png clip57592-x.png clip76672-x.png clip93493-x.png
                      $ declare -a array=([0]="30443" [1]="76672" [2]="42424")


                      Note that the array contains only two items that are expected to match; there are filenames with clips that are not present and there are clip numbers in array that do not exist as filenames.



                      execution



                      $ shopt -s nullglob
                      $ pfiles=( "$array[@]/#/clip" )
                      $ oIFS="$IFS"
                      $ IFS=
                      $ pfiles=( $pfiles[@]/%/-*.png )
                      $ IFS="$oIFS"
                      $ declare -p pfiles
                      declare -a pfiles=([0]="clip30443-x.png" [1]="clip76672-x.png")


                      Note the careful inclusion of double-quotes in the first assignment and the lack of double-quotes in the second assignment. The initial assignment translates the "array" array of numbers into a "pfiles" array of partial filenames by prepending the string clip to each element. The second assignment appends the -*.png wildcard to each element of the array; the lack of quoting in this assignment allows the shell to split each element on $IFS (normally space, tab, and newline), but we've temporarily overridden IFS to be empty. The shell then also "globs" the results, which is what we want here -- for it to expand the "clip...*-png" names into any matching filenames. With the nullglob shell option set, any non-matching wildcards are dropped. The final result is an array in pfiles of files matching clip numbers from your original array.




                      Option #2



                      (ab)use extended globbing:



                      shopt -s extglob nullglob
                      declare -a array=([0]="30443" [1]="76672" [2]="42424")
                      oIFS="$IFS"
                      IFS='|'
                      p="$array[*]"
                      IFS="$oIFS"
                      pfiles=( clip@($p)-*.png )


                      This works by setting IFS to the pipe symbol | so that the subsequent assignment to p of array[*] joins the elements of array by pipes (the first character of $IFS at that point). Pipes are the delimiters that bash's extended globbing syntax requires between options in an extended globbing pattern. The last line expands to an array of files that match the extended glob pattern we've constructed:



                      • start with clip

                      • contain one of the given patterns (clip numbers), now contained in the variable p

                      • followed by - then anything

                      • and ending in .png

                      The nullglob shell option is required in case your clips array does not overlap with any existing filenames.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered May 19 at 0:36









                      Jeff SchallerJeff Schaller

                      46.2k1166150




                      46.2k1166150





















                          2














                          With zsh:



                          clipnumbers=(01234 33333)
                          files=(clip$^clipnumbers-*.png(N.))


                          That expands one glob per clip number. Alternatively, you could turn the array into a glob alternation operator:



                          files=(clip($(j:)-*.png(N.))





                          share|improve this answer





























                            2














                            With zsh:



                            clipnumbers=(01234 33333)
                            files=(clip$^clipnumbers-*.png(N.))


                            That expands one glob per clip number. Alternatively, you could turn the array into a glob alternation operator:



                            files=(clip($(j:)-*.png(N.))





                            share|improve this answer



























                              2












                              2








                              2







                              With zsh:



                              clipnumbers=(01234 33333)
                              files=(clip$^clipnumbers-*.png(N.))


                              That expands one glob per clip number. Alternatively, you could turn the array into a glob alternation operator:



                              files=(clip($(j:)-*.png(N.))





                              share|improve this answer















                              With zsh:



                              clipnumbers=(01234 33333)
                              files=(clip$^clipnumbers-*.png(N.))


                              That expands one glob per clip number. Alternatively, you could turn the array into a glob alternation operator:



                              files=(clip($(j:)-*.png(N.))






                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited May 19 at 6:31

























                              answered May 19 at 6:26









                              Stéphane ChazelasStéphane Chazelas

                              320k57608979




                              320k57608979





















                                  1














                                  Using GNU grep and printf:



                                  grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png


                                  Which can be assigned to an array like so:



                                  files=($(grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png))





                                  share|improve this answer



























                                    1














                                    Using GNU grep and printf:



                                    grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png


                                    Which can be assigned to an array like so:



                                    files=($(grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png))





                                    share|improve this answer

























                                      1












                                      1








                                      1







                                      Using GNU grep and printf:



                                      grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png


                                      Which can be assigned to an array like so:



                                      files=($(grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png))





                                      share|improve this answer













                                      Using GNU grep and printf:



                                      grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png


                                      Which can be assigned to an array like so:



                                      files=($(grep -F $(printf '%sn' "$clipnumbers[@]") clip?????-randomlongstring.png))






                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered May 19 at 0:15









                                      agcagc

                                      5,03311338




                                      5,03311338





















                                          1














                                          mapfile -t files < <( shopt -s nullglob ; printf "%sn" $(printf "clip%s-*.png " "$clipnumbers[@]" ) )



                                          • mapfile -t files read lines into files as an array, strip trailing line break.


                                          • shopt -s nullglob expand non existing pattern to a null string


                                          • printf "%sn" ... expand patterns, one per line.


                                          • $(printf "clip%s-*.png " "$arr[@]") ) build patterns.





                                          share|improve this answer



























                                            1














                                            mapfile -t files < <( shopt -s nullglob ; printf "%sn" $(printf "clip%s-*.png " "$clipnumbers[@]" ) )



                                            • mapfile -t files read lines into files as an array, strip trailing line break.


                                            • shopt -s nullglob expand non existing pattern to a null string


                                            • printf "%sn" ... expand patterns, one per line.


                                            • $(printf "clip%s-*.png " "$arr[@]") ) build patterns.





                                            share|improve this answer

























                                              1












                                              1








                                              1







                                              mapfile -t files < <( shopt -s nullglob ; printf "%sn" $(printf "clip%s-*.png " "$clipnumbers[@]" ) )



                                              • mapfile -t files read lines into files as an array, strip trailing line break.


                                              • shopt -s nullglob expand non existing pattern to a null string


                                              • printf "%sn" ... expand patterns, one per line.


                                              • $(printf "clip%s-*.png " "$arr[@]") ) build patterns.





                                              share|improve this answer













                                              mapfile -t files < <( shopt -s nullglob ; printf "%sn" $(printf "clip%s-*.png " "$clipnumbers[@]" ) )



                                              • mapfile -t files read lines into files as an array, strip trailing line break.


                                              • shopt -s nullglob expand non existing pattern to a null string


                                              • printf "%sn" ... expand patterns, one per line.


                                              • $(printf "clip%s-*.png " "$arr[@]") ) build patterns.






                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered May 19 at 1:32









                                              dedowsdidedowsdi

                                              70416




                                              70416



























                                                  draft saved

                                                  draft discarded
















































                                                  Thanks for contributing an answer to Unix & Linux Stack Exchange!


                                                  • Please be sure to answer the question. Provide details and share your research!

                                                  But avoid


                                                  • Asking for help, clarification, or responding to other answers.

                                                  • Making statements based on opinion; back them up with references or personal experience.

                                                  To learn more, see our tips on writing great answers.




                                                  draft saved


                                                  draft discarded














                                                  StackExchange.ready(
                                                  function ()
                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f519734%2ffilter-a-file-list-against-an-integer-array%23new-answer', 'question_page');

                                                  );

                                                  Post as a guest















                                                  Required, but never shown





















































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown

































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown







                                                  Popular posts from this blog

                                                  Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                                                  Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                                                  What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company