Results for "Tipsoftheday"

Tags

  • Do you want to compile your Perl program without running it, try $ perl -c <program> #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3905 days ago

  • print "$^O\n"; To print the OS name in perl #Tipsoftheday #Perl #RegularExpression

    Tags: Tipsoftheday, Perl, RegularExpression

    3933 days ago

  • Write something at the bottom of the file without opening it. perl -p -i -e 'eof && s/$/\nWord/;' <filename> #Tipsoftheday #Perloneliner

    Tags: Tipsoftheday, Perloneliner

    3904 days ago

  • Generate N base genome: perl -e '@b=qw/A T G C/;print ">Genome\n";while($l<N){print @b[int(rand(4))];$l++;}' #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3886 days ago

  • To check: Does an array has all equal values. if (keys %{{ map {$_, 1} @test }} == 1) { # all equal } #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3900 days ago

  • Number all lines in a file; perl -pe '$_ = "$. $_"': #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3885 days ago

  • To get all the module dependencies for yourScript.pl program. $ scandeps.pl yourScript.pl #Perl #Tipsoftheday

    Tags: Perl, Tipsoftheday

    3898 days ago

  • To round a floating-point value to a certain number of decimal places: $rounded = sprintf("%.2f", $unrounded); #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3894 days ago

  • To count the number of matches in a string !!! $str = "one.two.three.four"; $n =()= $str =~ /\./gi; print $n; #Tipsoftheday #Perl

    Tags: Tipsoftheday, Perl

    3863 days ago

  • To print the matching pattern line perl -ne '/pattern/ && print' infile.gtf #Perloneliner #Tipsoftheday

    Tags: Perloneliner, Tipsoftheday

    3852 days ago