
February 5th, 2013, 08:18 PM
|
 |
Contributing User
|
|
|
|
|
Looks like you're on a unix system. Use the command
$ find /Risk/Ozone/Filters/ -exec myprogram {} \;
find will substitute for {} the full path name which will be an argument to myprogram. Thus
myprogram FILE
will execute for each file. Python solutions I can think of are messier.
__________________
[code] Code tags[/code] are essential for python code!
|