How to get list of output of find command of Linux
- Posted by rneu Jul 13, 2017
- 2121 views
I want to find get a list of full pathnames of all files in a directory and its subdirectories - just as one gets in the output of 'find' command of Linux.
I could not find a way to do it in manual. The function dir() apparently does not support recursive option to check subdirectories also.
I can display the list on the console by using code: system_exec("find") but how can I get this in a sequence for further use in Euphoria program?
Thanks for your help.