here's how I do things like that: use the unix 'find' and 'xargs' command. say you want to get a list of all files named "*.txt" you do 'find . -name "*.txt" ' now you pipe that into xargs, which turns it into arguments AFTER a command, e.g. find . -name "*.txt" | xargs rdoc
maybe explain "recursively found". Like, you want every file in directory X, and all of its subirectories, arbitrarily deep?
-
-
This Tweet is unavailable.
-
-
Loading seems to be taking a while.
Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.