in reply to Re: Move or rename script
in thread Move or rename script
Can the same be done with the move command except I want to use command line arguments when the script is invoked???#!/usr/local/bin/perl sub mak { !system "/bin/mkdir", @_; } print "Enter name of Directory you want to create: "; chomp($newb = <STDIN>); mak $newb; print "$newb directory created.\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Move or rename script
by Jenda (Abbot) on May 24, 2002 at 15:55 UTC | |
|
Re: Re: Re: Move or rename script
by IOrdy (Friar) on May 24, 2002 at 15:58 UTC |