BOL
Log in
Username or email
Password
Remember me
Register
Lost password
Activity
News
Opportunity
ResearchLabs
Questions
Pages
Discussion
More
BioScripts
Blogs
Bookmarks
Files
Fun
Groups
Polls
The Wire
Tryst
Videos
Our Sponsors
Download
BioinformaticsOnline(BOL) Apps
in your chrome browser.
The Wire
#linux
Wire posts tagged with 'linux'
Jit
@jit.aber
Thread
By
Jit
2851 days ago
Convert ps2pdf full size without cropping it : $ ps2pdf -dEPSCrop file.ps
#Linux
#Crop
#PS
#ps2pdf
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2862 days ago
Fasta sequence length: awk '/^>/ {if (seqlen){print seqlen}; print ;seqlen=0;next; } { seqlen += length($0)}END{print seqlen}' file.fa
#Length
#Linux
#OneLiner
Jit
@jit.aber
Thread
By
Jit
2867 days ago
Delete size zero files from a folder: find . -size 0 -delete
#Linux
#Trick
Jit
@jit.aber
Thread
By
Jit
2893 days ago
MACHTYPE variable to know what type of machine you are compiling the software on. echo $MACHTYPE
#Linux
#MACHTYPE
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2924 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
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2950 days ago
Re-install perl in Ubuntu: sudo aptitude reinstall perl
#Perl
#Ubuntu
#Install
#Linux
Jit
@jit.aber
Thread
By
Jit
2951 days ago
List all kernels dpkg --get-selections | grep "linux-image-[[:digit:]].*" | tr "\t" ";" | cut -d ";" -f1
#Kernels
#Linux
#List
Jit
@jit.aber
Thread
By
Jit
2983 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
Jit
@jit.aber
Thread
By
Jit
2991 days ago
Number of thread in Linux: echo $(( `ps axms | wc -l` - 1))
#Thread
#Info
#Linux
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
3000 days ago
Little correction, I guess you mean concatenate many files: $ for a in *.txt ; do cat $a >> newFile ; done
#Linux
#Tricks
Neel
@neelam
Thread
By
Neel
3001 days ago
Contact many files: $ for a in *.txt ; do cat $a >> newFile ; done
#Linux
#Tricks
Jit
@jit.aber
Thread
By
Jit
3001 days ago
Find a file with certain size and delete them: $ find . -name "see-D-d-ALN_*" -size -10k -delete
#Delete
#Size
#Linux
#Tricks
Jit
@jit.aber
Thread
By
Jit
3015 days ago
du -sh * will give you the size of all the directories,files etc in current directory in human readable format.
#Linux
#Size
#Tricks
#Folders
#Files
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
3021 days ago
Determine your current Java version in Linux OS: java -Xmx90m -version
#Java
#Linux
#Version
Jit
@jit.aber
Thread
By
Jit
3041 days ago
Sync your broken transfer in Linux rsync -e ssh file host:/directory/.
#rsync
#scp
#Linux
« Previous
1
2
3
4
5
Next »