print "Insert your command:"; $input = ; if ($input eq "help") { # do something } elsif ($input eq "other command") { # do something else } #### print "Insert your command:"; $input = ; if ($input =~ /^help\s+(.*)/) { # do something } elsif ($input =~ /^other command\s+(.*)/) { # do something else } #### else { print "'$input' is not a valid command. Type help for a full list of commands.\n"; }