Is it possible to cat array elements that are text files passed as input? I have something like this:
array=("$@")
cat array[3]
Where first I put all my arguments (some files.txt) into an array to handle them later and then for example I'd like to print the body of the third file (I know I could easily use cat $3).