You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
301 B
Perl

5 years ago
#!/usr/bin/perl -w
use strict;
print "please enter a directory name: ";
chomp(my $dir = <STDIN>);
mkdir $dir, 0777 or die "failed to make directory $dir: $!\n";
print "made the directory $dir ok!\n";
chdir $dir or die "failed to change into $dir: $!\n";
print "changed into $dir ok!\n";