Suppose I have a directory under which there are 3 files named: file1.txt,file2.txt and file3.txt.
Now how can I fill an array with those file names(I just know that all the files have certain prefix, i.e. file, after file it can be 1,2,3 etc.
|
|
From Greg's Wiki: the Bash Guide entry on arrays:
There is a detailed explanation of arrays on the page that breaks this construct down element by element; it is well worth reading in full. |
|||||||
|
|
If the files are all in the same directory, you have some other options in addition to jasonwryan's answer. Using a glob:
Only matching the example files in the question:
If you have bash version 4 or higher, you can even glob recursively:
Using brace expansion to restrict your array to only your example files:
Unlike the other two examples, this will populate the array with the filenames, even if they do not exist. For this reason, the brace expansion may not be desirable. |
||||
|
|