perl test.pl --str=$%^@*jimbo #### #!/perl/bin/perl use strict; use warnings; use Getopt::Long; my $str; GetOptions ( 'str=s' => \$str ); print $str, "\n";