Re: How to get list of output of find command of Linux
- Posted by rneu Jul 16, 2017
- 2034 views
_tom said...
- try writing to a file
system( find --help > foo.txt ) --> load "foo.txt" --> parse and use the output_tom
This is a very good and simple method. However, the code should not have:
--help
It should simply be:
system("find > foo.txt")