#!/usr/bin/perl
$file1 = $ARGV[0];
$file2 = $ARGV[1];
$curr_dir = $ENV{PWD};

exec(qq{rsh edge "cd $curr_dir; convert $file1 $file2"});
