View Single Post
  #4   (View Single Post)  
Old 12th December 2008
bsddaemon bsddaemon is offline
Slack Daemon
 
Join Date: Oct 2008
Posts: 35
Default

For loop would be the easiest solution, or maybe you wanna have some fun with find and xargs:

Code:
 $ find dir -name "*.jpg*" -exec convert_to_djvu_cmd {} \;
Code:
 $ find dir -name "*.jpg*" | xargs convert_to_djvu_cmd
__________________
...then the God created man...
Reply With Quote