I would like to know how I can assign values to an array in bash like I try here:
declare -a array
find */*file.txt > array
|
|
|
If I'm understanding correctly what you want, you need to change this:
to this:
(which will set |
|||
|
|