Re: How to get list of output of find command of Linux
- Posted by _tom (admin) Jul 14, 2017
- 2117 views
- try walkdir; this is recursive
include std/filesys.e walk_dir(sequence path_name, object your_function, integer scan_subdirs = types :FALSE, object dir_source = types :NO_ROUTINE_ID)
- try writing to a file
system( find --help > foo.txt ) --> load "foo.txt" --> parse and use the output
_tom