Help for this page

Select Code to Download


  1. or download this
    my @filenames;
    push @filenames, $_ while (<STDIN>);
    ...
    
    use Data::Dumper;
    print Dumper(@filenames);
    
  2. or download this
    ls | my_script.pl
    
  3. or download this
    my %hash; # Declare your hash.
    
    $hash{$key} = $sequence; # Assign $sequence to the hash with key $key.
    
    my $sequence_im_looking_for = $hash{$key}; # Get the sequence by looki
    +ng it up with its key $key.