# Bash-Oneliner Hi bash learners and bioinformaticans, welcome to Bash Oneliner learning station. I started studying bioinformatics data three years ago, and I was amazed by those single-word bash commands which are much faster than my dull scripts, so i started bash. Not all the code here is oneliner (if the ';' counts..), but i put effort on making them brief and fast. This blog will focus on bash commands for parsing biological data for dummies like me, most of which are tsv files (tab-separated values); some of them are for Ubuntu system maintaining (for dummies). I have been recording the bash commands on my notebook, but putting them on web will help others and myself to query. I apologize that there won't be any citation for the codes, coz i haven't make any record of it, but they are probably from dear Google and Stackoverflow. English and bash are not my first language, so... correct me anytime, thank you In case you would like to check up and like my stupid questions on Stackoverflow, here's my page: http://stackoverflow.com/users/4290753/once Here's a more stylish version~ http://onceupon.github.io/Bash-Oneliner/ ##Handy Bash oneliner commands for tsv file editing - [Grep](#grep) - [Sed](#sed) - [Awk](#awk) - [Xargs](#xargs) - [Find](#find) - [Loops](#loops) - [Download](#download) - [Random](#random) - [Others](#others) - [System](#system) ##Grep #####extract text bewteen words (e.g. w1,w2) ```bash grep -o -P '(?<=w1).*(?=w2)' ``` #####grep lines without word (e.g. bbo) ```bash grep -v bbo filename ``` #####grep only one/first match (e.g. bbo) ```bash grep -m 1 bbo filename ``` #####grep and count (e.g. bbo) ```bash grep -c bbo filename ``` #####insensitive grep (e.g. bbo/BBO/Bbo) ```bash grep -i "bbo" filename ``` #####count occurrence (e.g. three times a line count three times) ```bash grep -o bbo filename ``` #####COLOR the match (e.g. bbo)! ```bash grep --color bbo filename ``` #####grep search all files in a directory(e.g. bbo) ```bash grep -R bbo /path/to/directory ``` or ```bash grep -r bbo /path/to/directory ``` #####search all files in directory, only output file names with matches(e.g. bbo) ```bash grep -Rh bbo /path/to/directory ``` or ```bash grep -rh bbo /path/to/directory ``` #####grep OR (e.g. A or B or C or D) ``` grep 'A\|B\|C\|D' ``` #####grep AND (e.g. A and B) ```bash grep 'A.*B' ``` #####grep all content of a fileA from fileB ```bash grep -f fileA fileB ``` #####grep a tab ```bash grep $'\t' ``` ##Sed [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####remove lines with word (e.g. bbo) ```bash sed "/bbo/d" filename ``` #####edit infile (edit and save) ```bash sed -i "/bbo/d" filename ``` #####when using variable (e.g. $i), use double quotes " " e.g. add >$i to the first line (to make a FASTA file) ```bash sed "1i >$i" ``` //notice the double quotes! in other examples, you can use a single quote, but here, no way! //'1i' means insert to first line #####delete empty lines ```bash sed '/^\s*$/d' ``` or ```bash sed 's/^$/d' ``` #####delete last line ```bash sed '$d' ``` #####delete last character from end of file ```bash sed -i '$ s/.$//' filename ``` #####add string to end of file (e.g. "]") ```bash sed '$s/$/]/' filename ``` #####add string to end of each line (e.g. "}") ```bash sed -e 's/$/\}\]/' filename ``` #####add \n every nth character (e.g. every 4th character) ```bash sed 's/.\{4\}/&\n/g' ``` #####concatenate/combine/join files with a seperator and next line (e.g seperate by ",") ```bash sed -s '$a,' *.json > all.json ``` #####substitution (e.g. replace A by B) ```bash sed 's/A/B/g' filename ``` #####select lines start with string (e.g. bbo) ```bash sed -n '/^@S/p' ``` #####delete lines with string (e.g. bbo) ```bash sed '/bbo/d' filename ``` #####print every nth lines ```bash sed -n '0~3p' filename ``` //catch 0: start; 3: step #####print every odd # lines ```bash sed -n '1~2p' ``` #####print every third line including the first line ```bash sed -n '1p;0~3p' ``` #####remove leading whitespace and tabs ```bash sed -e 's/^[ \t]*//' ``` //notice a whitespace before '\t'!! #####remove only leading whitespace ```bash sed 's/ *//' ``` //notice a whitespace before '*'!! #####remove ending commas ```bash sed 's/,$//g' ``` #####add a column to the end ```bash sed "s/$/\t$i/" ``` //$i is the valuable you want to add e.g. add the filename to every last column of the file ```bash for i in $(ls);do sed -i "s/$/\t$i/" $i;done ``` #####add extension of filename to last column ```bash for i in T000086_1.02.n T000086_1.02.p;do sed "s/$/\t${i/*./}/" $i;done >T000086_1.02.np ``` #####remove newline\ nextline ```bash sed ':a;N;$!ba;s/\n//g' ``` #####print a number of lines (e.g. line 10th to line 33 rd) ```bash sed -n '10,33p' file\' file.txt ``` #####count all files ```bash ls |xargs -n1 wc -l ``` #####to filter txt to a single line ```bash ls -l| xargs ``` #####count files within directories ```bash echo mso{1..8}|xargs -n1 bash -c 'echo -n "$1:"; ls -la "$1"| grep -w 74 |wc -l' -- ``` // "--" signals the end of options and display further option processing #####download dependencies files and install (e.g. requirements.txt) ```bash cat requirements.txt| xargs -n1 sudo pip install ``` #####count lines in all file, also count total lines ```bash ls|xargs wc -l ``` ##Find [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####list all sub directory/file in the current directory ```bash find . ``` #####list all files under the current directory ```bash find . -type f ``` #####list all directories under the current directory ```bash find . -type d ``` #####edit all files under current directory (e.g. replace 'www' with 'ww') ```bash find . name '*.php' -exec sed -i 's/www/w/g' {} \; ``` if no subdirectory ```bash replace "www" "w" -- * ``` //a space before * #####find and output only filename (e.g. "mso") ```bash find mso*/ -name M* -printf "%f\n" ``` #####find and delete file with size less than (e.g. 74 byte) ```bash find . -name "*.mso" -size -74c -delete ``` //M for MB, etc ##Loops [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####while loop, column subtraction of a file (e.g. a 3 columns file) ```bash while read a b c; do echo $(($c-$b));done < <(head filename) ``` //there is a space between the two '<'s #####while loop, sum up column subtraction ```bash i=0; while read a b c; do ((i+=$c-$b)); echo $i; done < <(head filename) ``` #####if loop ```bash if (($j==$u+2)) ``` //(( )) use for arithmetic operation ```bash if [[$age >21]] ``` //[[ ]] use for comparison #####for loop ```bash for i in $(ls); do echo file $i;done ``` ##Download [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####download all from a page ```bash wget -r -l1 -H -t1 -nd -N -np -A mp3 -e robots=off http://example.com ``` //-r: recursive and download all links on page //-l1: only one level link //-H: span host, visit other hosts //-t1: numbers of retries //-nd: don't make new directories, download to here //-N: turn on timestamp //-nd: no parent //-A: type (seperate by ,) //-e robots=off: ignore the robots.txt file which stop wget from crashing the site, sorry example.com ##Random [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####random pick 100 lines from a file ```bash shuf -n 100 filename ``` #####random order (lucky draw) ```bash for i in a b c d e; do echo $i; done| shuf ``` #####echo series of random numbers between a range (e.g. generate 15 random numbers from 0-10) ```bash shuf -i 0-10 -n 15 ``` #####echo a random number ```bash echo $RANDOM ``` #####random from 0-9 ```bash echo $((RANDOM % 10)) ``` #####random from 1-10 ```bash echo $(((RANDOM %10)+1)) ``` ##Others [[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)] #####remove newline / nextline ```bash tr --delete '\n' output.txt ``` #####replace newline ```bash tr '\n' ' ' log & ``` or ```bash (command here) 2>&1| tee logfile ``` or ```bash (command here) 2>&1 >>outfile ``` //0: standard input; 1: standard output; 2: standard error #####send mail ```bash echo 'heres the content'| mail -A 'file.txt' -s 'mail.subject' me@gmail.com ``` //use -a flag to set send from (-a "From: some@mail.tld") #####.xls to csv ```bash xls2csv filename ``` #####append to file (e.g. hihi) ```bash echo 'hihi' >>filename ``` #####make BEEP sound ```bash speaker-test -t sine -f 1000 -l1 ``` #####set beep duration ```bash (speaker-test -t sine -f 1000) & pid=$!;sleep 0.1s;kill -9 $pid ``` #####history edit/ delete ```bash ~/.bash_history ``` or ```bash history -d [line_number] ``` #####get last history/record filename ```bash head !$ ``` #####clean screen ```bash clear ``` or ```bash Ctrl+l ``` #####send data to last edited file ```bash cat /directory/to/file echo 100>!$ ``` #####run history number (e.g. 53) ```bash !53 ``` #####run last command ```bash !! ``` #####run last command that began with (e.g. cat filename) ```bash !cat ``` or ```bash !c ``` //run cat filename again #####extract .xf 1.unxz filename.tar.xz 2.tar -xf filename.tar #####install python package ```bash pip install packagename ``` #####Download file if necessary ```bash data=file.txt url=http://www.example.com/$data if [! -s $data];then echo "downloading test data..." wget $url fi ``` #####wget to a filename (when a long name) ```bash wget -O filename "http://example.com" ``` #####wget files to a folder ```bash wget -P /path/to/directory "http://example.com" ``` #####delete current bash command ```bash Ctrl+U ``` or ```bash Ctrl+C ``` or ```bash Alt+Shift+# ``` //to make it to history #####add things to history (e.g. "addmetohistory") ```bash #addmetodistory ``` //just add a "#" before~~ #####sleep awhile or wait for a moment or schedule a job ```bash sleep 5;echo hi ``` #####count the time for executing a command ```bash time echo hi ``` #####backup with rsync ```bash rsync -av filename filename.bak rsync -av directory directory.bak rsync -av --ignore_existing directory/ directory.bak rsync -av --update directory directory.bak ``` //skip files that are newer on receiver (i prefer this one!) #####make all directories at one time! ```bash mkdir -p project/{lib/ext,bin,src,doc/{html,info,pdf},demo/stat} ``` //-p: make parent directory //this will create project/doc/html/; project/doc/info; project/lib/ext ,etc #####run command only if another command returns zero exit status (well done) ```bash cd tmp/ && tar xvf ~/a.tar ``` #####run command only if another command returns non-zero exit status (not finish) ```bash cd tmp/a/b/c ||mkdir -p tmp/a/b/c ``` #####extract to a path ```bash tar xvf -C /path/to/directory filename.gz ``` #####use backslash "\" to break long command ```bash cd tmp/a/b/c \ > || \ >mkdir -p tmp/a/b/c ``` #####get pwd ```bash VAR=$PWD; cd ~; tar xvf -C $VAR file.tar ``` //PWD need to be capital letter #####list file type of file (e.g. /tmp/) ```bash file /tmp/ ``` //tmp/: directory #####bash script ```bash #!/bin/bash file=${1#*.} ``` //remove string before a "." ```bash file=${1%.*} ``` //remove string after a "." #####search from history ```bash Ctrl+r ``` #####python simple HTTP Server ```bash python -m SimpleHTTPServer ``` #####variables ```bash {i/a/,} ``` e.g. replace all ```bash {i//a/,} ``` //for variable i, replace all 'a' with a comma #####read user input ```bash read input echo $input ``` #####generate sequence 1-10 ```bash seq 10 ``` #####sum up input list (e.g. seq 10) ```bash seq 10|paste -sd+|bc ``` #####find average of input list/file ```bash i=`wc -l filename|cut -d ' ' -f1`; cat filename| echo "scale=2;(`paste -sd+`)/"$i|bc ``` #####generate all combination (e.g. 1,2) ```bash echo {1,2}{1,2} ``` //1 1, 1 2, 2 1, 2 2 #####generate all combination (e.g. A,T,C,G) ```bash set = {A,T,C,G} group= 5 for ((i=0; i<$group; i++));do repetition=$set$repetition;done bash -c "echo "$repetition"" ``` #####read file content to variable ```bash foo=$(