Hi guys,
I appreciate any help or guidance to this question as I am a novice to programming or anything resembling cs. I need to fill an array with the file paths of files, lets say its .txt files in this case. In a shell I would use the command:
find . -name "*.txt"
Can I run this within a perl script so I can fill an array with these filepaths (to be used in my script).
I appreciate the help!