| What is the correct way of calling something like "convert pic.jpg -flip pic2.jpg" from within Arc? I tried:  (def flip (old new)
    (system:string "convert " old " -flip " new))
 
but I got a "command not found" error even though it works fine from the command line. |