Help for this page

Select Code to Download


  1. or download this
    elsif(($#ARGV+1) < 1) {
    
  2. or download this
    elsif ($#ARGV < 0) {
    
  3. or download this
    elsif (@ARGV < 1) {
    # or, if you prefer an explicitly stated scalar context:
    elsif (scalar @ARGV < 1) {
    
  4. or download this
    if(! -e "$Dir") {
    
  5. or download this
    use strict;
    use warnings;
    ...
    chdir $dir;
    mkdir "FirstSubDir";
    mkdir "SecondSubDir";