<html><body><p><font size="2">Also see if your distribution includes samples/ilm/mmxcp  </font><br><font size="2">which, if you are determined to cp or mv from one path to another, shows a way to do that easily in perl, </font><br><font size="2">using code similar to the aforementions bin/mmxargs</font><br><br><font size="2">Here is the path changing part...</font><br><br><font size="2">   ...</font><br><br><font size="2">   $src =~ s/'/'\\''/g;  # any ' within the name like x'y become x'\''y then we  quote all names passed to commands</font><br><font size="2">    my @src = split('/',$src);</font><br><font size="2">    my $sra = join('/', @src[$strip+1..$#src-1]);</font><br><font size="2">    $newtarg = "'" . $target . '/' . $sra . "'";<br></font><br><font size="2"> ...</font><br><BR>
</body></html>