Results for "Linux Server"

Wire posts

  • Contact many files: $ for a in *.txt ; do cat $a >> newFile ; done #Linux #Tricks

    2792 days ago

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

    2791 days ago

  • Number of thread in Linux: echo $(( `ps axms | wc -l` - 1)) #Thread #Info #Linux

    2782 days ago

  • Split the text file with line number in Linux: wc -l abc.txt and then: split -l 60000 abc.txt #Split #Break #Line #Ubuntu #Linux #Tricks

    2775 days ago

  • List all kernels dpkg --get-selections | grep "linux-image-[[:digit:]].*" | tr "\t" ";" | cut -d ";" -f1 #Kernels #Linux #List

    2743 days ago

  • Re-install perl in Ubuntu: sudo aptitude reinstall perl #Perl #Ubuntu #Install #Linux

    2742 days ago

  • Perl module upgrade on Linux: $ sudo cpan then cpan[1]> upgrade #Upgrade #Perl #Modules

    2719 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

    2715 days ago

  • NGS tutorial http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/linux.html #NGS #Tutorial #Example

    2688 days ago

  • MACHTYPE variable to know what type of machine you are compiling the software on. echo $MACHTYPE #Linux #MACHTYPE

    2684 days ago