Hi Guys
I've been writing a script which loads files from a CD, asks the user for the specific file they are after and loads that into a different directory under a different name.
i.e
Fileblah -> tempdir -> Rename -> finaldir
The question is how do I get rid of the user input so that they just run the script automatically and it can check for the correct file.
Here is my code so far
#!/usr/bin/perl -w
use strict;
use File::Copy;
use warning;
my $np_new = 'usr/castle/np_new/'
my $temp = 'usr/castle/pctemp'
system("clear");
system("mount /dev/cd0 /mnt");
system("cp /mnt/* $temp/.");
system("umount /mnt");
my %dest =
(SO_PC => 'PCMAP.BIN',
MS_PC => 'FULLPC.BIN',
SO_CV => 'CVFULLPC.BIN',
MS_MC => 'MBFULLPC.BIN');
print "\n" x 5, "\t" x 3, "Input required: ";
chomp $fileName;
my $fileName = <STDIN>;
for my $search (keys %dest)
{
die "$fileName does not exist!" unless -e $fileName;
copy ($fileName, $np_new.'/usr/castle/pctemp/'$dest{$search}) if $f
+ileName =~ /^$search/i;
}
The files always come in as one of the four
SO_PC(refnum).BIN
MS_PC(refnum).BIN
SO_CV(refnum).BIN
MS_MC(refnum).BIN
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.