Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    
  2. or download this
        if ($input =~ /^(y|yes)$/) {
            say "Backup is beginning...";
    ...
            say "This is not a valid answer.";
            say "Please enter 'yes' or 'no'";
        }
    
  3. or download this
        if ($input eq 'y' || $input eq 'yes') {
            say "Backup is beginning...";
            last;
        }