Results for "Tricks"

Tags

  • Little correction, I guess you mean concatenate many files: $ for a in *.txt ; do cat $a >> newFile ; done #Linux #Tricks

    Tags: Linux, Tricks

    2781 days ago

  • Extract ten lines below matched string with grep: grep -A 10 "string" filename1 ; -B for above and -C for both #grep #Linux #Tricks #Lines #Matches

    Tags: grep, Linux, Tricks, Lines, Matches

    2705 days ago

  • Accept file from STDIN in Perl my $infh = \*STDIN; my $outfh = \*STDOUT #Perl #Tricks

    Tags: Perl, Tricks

    2681 days ago

  • Remove all blank lines from file. perl -i.bak -n -e "print if /\S/" ../finalSample.fa #Perl #Tricks #PerlOneliner

    Tags: Perl, Tricks, PerlOneliner

    2605 days ago

  • Show before(B) and after(A) the matching region $ grep -B 3 -A 2 foo README.txt #Linux #Tricks #View #Grep

    Tags: Linux, Tricks, View, Grep

    2543 days ago

  • Nano tricks https://wiki.gentoo.org/wiki/Nano/Basics_Guide #Nano #Tricks

    Tags: Nano, Tricks

    1823 days ago