misc fixes to LM
[light-and-matter.git] / mv_silent
blob4903293a7ff4b2ea67ebe42d68f28fc9b63fc3de
1 #!/usr/bin/perl
3 use strict;
5 my $c = "mv $ARGV[0] $ARGV[1]";
6 #print STDERR "mv_silent called\n";
7 if (-e $ARGV[0]) {
8 #print STDERR "mv_silent: $c, -e=",(-e $ARGV[0])," ===================================================\n";
9 system $c;
11 else {
12 #print STDERR "mv_silent: $ARGV[0] doesn't exist\n"