- or download this
...
open OUT, ">", "outfile.name" or die "outfile.name: $!\n";
...
print OUT $DNA_conc;
# and so on...
- or download this
# don't do this:
# print " Enter the number. \n";
...
unless ( @ARGV == 1 and $ARG[0] =~ /([\d.]+)/ );
my $df = $1;
- or download this
your_script_name 10.5 > outfile.name
- or download this
#!/usr/bin/perl
...
print join( "\t", @vals ), "\n";
}
}
- or download this
script_name 10 input.txt > 10_x_50_x_input.txt