Bash-Oneliner/README.md

1494 lines
21 KiB
Markdown
Raw Normal View History

2016-07-01 10:59:40 +00:00
# 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.
2016-06-14 06:53:59 +00:00
2016-06-28 03:02:58 +00:00
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.
2016-06-14 06:53:59 +00:00
2016-06-16 06:53:35 +00:00
English and bash are not my first language, so... correct me anytime, thank you
2016-06-14 06:53:59 +00:00
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
2016-06-16 06:55:27 +00:00
2016-07-01 11:28:09 +00:00
Here's a more stylish version~
http://onceupon.github.io/Bash-Oneliner/
2016-06-16 06:55:27 +00:00
2016-06-14 07:32:20 +00:00
##Handy Bash oneliner commands for tsv file editing
2016-06-14 07:11:00 +00:00
2016-06-14 07:22:55 +00:00
- [Grep](#grep)
- [Sed](#sed)
- [Awk](#awk)
- [Xargs](#xargs)
- [Find](#find)
2016-06-16 06:44:57 +00:00
- [Loops](#loops)
- [Download](#download)
2016-06-27 05:54:48 +00:00
- [Random](#random)
2016-06-14 07:22:55 +00:00
- [Others](#others)
2016-06-16 06:44:57 +00:00
- [System](#system)
2016-06-14 07:20:16 +00:00
2016-06-14 07:13:30 +00:00
##Grep
2016-06-14 08:10:45 +00:00
#####extract text bewteen words (e.g. w1,w2)
2016-06-14 07:20:16 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -o -P '(?<=w1).*(?=w2)'
```
2016-06-14 07:20:16 +00:00
2016-06-14 08:10:45 +00:00
#####grep lines without word (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -v bbo
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep and count (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -c bbo filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####insensitive grep (e.g. bbo/BBO/Bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -i "bbo" filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####count occurrence (e.g. three times a line count three times)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -o bbo filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####COLOR the match (e.g. bbo)!
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep --color bbo filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep search all files in a directory(e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -R bbo /path/to/directory
```
2016-06-14 07:55:08 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
grep -r bbo /path/to/directory
```
2016-06-14 08:10:45 +00:00
#####search all files in directory, only output file names with matches(e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -Rh bbo /path/to/directory
```
or
```bash
grep -rh bbo /path/to/directory
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep OR (e.g. A or B or C or D)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```
grep 'A\|B\|C\|D'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep AND (e.g. A and B)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep 'A.*B'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep all content of a fileA from fileB
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep -f fileA fileB
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####grep a tab
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
grep $'\t'
```
2016-06-14 06:57:38 +00:00
2016-06-14 07:25:46 +00:00
##Sed
2016-06-14 07:32:20 +00:00
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
2016-06-14 07:25:46 +00:00
2016-06-14 08:10:45 +00:00
#####remove lines with word (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed "/bbo/d" filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####edit infile (edit and save)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -i "/bbo/d" filename
```
2016-06-14 08:10:45 +00:00
#####when using variable (e.g. $i), use double quotes " "
2016-06-14 07:55:08 +00:00
e.g. add >$i to the first line (to make a FASTA file)
2016-07-01 10:52:19 +00:00
```bash
sed "1i >$i"
```
2016-06-14 06:57:38 +00:00
//notice the double quotes! in other examples, you can use a single quote, but here, no way!
//'1i' means insert to first line
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####delete empty lines
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed '/^\s*$/d'
```
2016-06-14 07:55:08 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
sed 's/^$/d'
```
2016-06-14 08:10:45 +00:00
#####delete last line
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed '$d'
```
2016-06-14 06:57:38 +00:00
2016-07-13 08:37:37 +00:00
#####delete last character from end of file
```bash
sed -i '$ s/.$//' filename
```
#####add string to end of file (e.g. "]")
```bash
sed '$s/$/]/' filename
```
2016-07-13 08:29:31 +00:00
#####add string to end of each line (e.g. "}")
```bash
2016-07-13 08:37:37 +00:00
sed -e 's/$/\}\]/' filename
2016-07-13 08:29:31 +00:00
```
2016-06-14 08:10:45 +00:00
#####add \n every nth character (e.g. every 4th character)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed 's/.\{4\}/&\n/g'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####substitution (e.g. replace A by B)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed 's/A/B/g' filename
```
2016-06-14 08:10:45 +00:00
#####select lines start with string (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -n '/^@S/p'
```
2016-06-14 08:10:45 +00:00
#####delete lines with string (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed '/bbo/d' filename
```
2016-06-14 08:10:45 +00:00
#####print every nth lines
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -n '0~3p' filename
```
2016-06-14 06:57:38 +00:00
//catch 0: start; 3: step
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####print every odd # lines
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -n '1~2p'
```
2016-06-14 08:10:45 +00:00
#####print every third line including the first line
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -n '1p;0~3p'
```
2016-06-14 08:10:45 +00:00
#####remove leading whitespace and tabs
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed -e 's/^[ \t]*//'
```
2016-06-14 06:57:38 +00:00
//notice a whitespace before '\t'!!
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####remove only leading whitespace
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed 's/ *//'
```
2016-06-14 06:57:38 +00:00
//notice a whitespace before '*'!!
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####remove ending commas
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed 's/,$//g'
```
2016-06-14 08:10:45 +00:00
#####add a column to the end
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed "s/$/\t$i/"
```
2016-06-14 07:55:08 +00:00
//$i is the valuable you want to add
2016-06-14 06:57:38 +00:00
e.g. add the filename to every last column of the file
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
for i in $(ls);do sed -i "s/$/\t$i/" $i;done
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####remove newline\ nextline
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sed ':a;N;$!ba;s/\n//g'
```
2016-06-14 06:57:38 +00:00
2016-07-01 06:47:42 +00:00
#####print a number of lines (e.g. line 10th to line 33 rd)
2016-07-01 10:52:19 +00:00
```bash
sed -n '10,33p' <filename
```
2016-07-01 06:47:42 +00:00
2016-06-14 06:57:38 +00:00
2016-06-14 07:20:16 +00:00
#Awk
2016-06-14 07:55:08 +00:00
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
2016-06-14 08:10:45 +00:00
#####set tab as field separator
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk -F $'\t'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####output as tab separated (also as field separator)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk -v OFS='\t'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####pass variable
2016-06-14 06:57:38 +00:00
2016-07-01 10:52:19 +00:00
```bash
a=bbo;b=obb;
awk -v a="$a" -v b="$b" "$1==a && $10=b' filename
```
2016-06-14 07:55:08 +00:00
2016-06-14 08:10:45 +00:00
#####print number of characters on each line
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{print length ($0);}' filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####find number of columns
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{print NF}'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####reverse column order
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{print $2, $1}'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####check if there is a comma in a column (e.g. column $1)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '$1~/,/ {print}'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####split and do for loop
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{split($2, a,",");for (i in a) print $1"\t"a[i]} filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####print all lines before nth occurence of a string (e.g stop print lines when bbo appears 7 times)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk -v N=7 '{print}/bbo/&& --N<=0 {exit}'
```
2016-06-14 06:57:38 +00:00
2016-07-15 09:12:52 +00:00
#####print filename and last line of all files in directory
```bash
ls|xargs -n1 -I file awk '{s=$0};END{print FILENAME,s}' file'
```
2016-06-14 08:10:45 +00:00
#####add string to the beginning of a column (e.g add "chr" to column $3)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk 'BEGIN{OFS="\t"}$3="chr"$3'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####remove lines with string (e.g. bbo)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '!/bbo/' file
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####column subtraction
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cat file| awk -F '\t' 'BEGIN {SUM=0}{SUM+=$3-$2}END{print SUM}'
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####usage and meaning of NR and FNR
2016-06-14 06:57:38 +00:00
e.g.
fileA:
a
b
c
fileB:
d
e
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk 'print FILENAME, NR,FNR,$0}' fileA fileB
```
2016-06-14 07:55:08 +00:00
fileA 1 1 a
2016-06-14 06:57:38 +00:00
fileA 2 2 b
fileA 3 3 c
fileB 4 1 d
fileB 5 2 e
2016-06-14 08:10:45 +00:00
#####and gate
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
e.g.
fileA:
1 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
2 1
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
3 1
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
4 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
fileB:
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
1 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
2 1
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
3 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
4 1
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk -v OFS='\t' 'NR=FNR{a[$1]=$2;next} NF {print $1,((a[$1]=$2)? $2:"0")}' fileA fileB
```
2016-06-14 08:03:32 +00:00
2016-06-14 07:55:08 +00:00
1 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
2 1
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
3 0
2016-06-14 08:03:32 +00:00
2016-06-14 06:57:38 +00:00
4 0
2016-06-14 08:10:45 +00:00
#####round all numbers of file (e.g. 2 significant figure)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{while (match($0, /[0-9]+\[0-9]+/)){
2016-06-14 07:55:08 +00:00
\printf "%s%.2f", substr($0,0,RSTART-1),substr($0,RSTART,RLENGTH)
\$0=substr($0, RSTART+RLENGTH)
\}
\print
\}'
2016-07-01 10:52:19 +00:00
```
2016-06-14 07:55:08 +00:00
2016-06-14 08:10:45 +00:00
#####give number/index to every row
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
awk '{printf("%s\t%s\n",NR,$0)}'
```
2016-06-14 06:57:38 +00:00
2016-06-14 07:55:08 +00:00
##Xargs
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
2016-06-28 02:59:23 +00:00
2016-07-01 10:54:39 +00:00
#####set tab as delimiter (default:space)
2016-06-14 06:57:38 +00:00
2016-07-01 10:52:19 +00:00
```bash
xargs -d\t
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####display 3 items per line
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo 1 2 3 4 5 6| xargs -n 3
```
2016-06-14 06:57:38 +00:00
//1 2 3
4 5 6
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####prompt before execution
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo a b c |xargs -p -n 3
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####print command along with output
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
xargs -t abcd
```
2016-06-14 06:57:38 +00:00
///bin/echo abcd
//abcd
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####with find and rm
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -name "*.html"|xargs rm -rf
```
2016-06-14 06:57:38 +00:00
2016-06-14 07:55:08 +00:00
delete fiels with whitespace in filename (e.g. "hello 2001")
2016-07-01 10:52:19 +00:00
```bash
find . -name "*.c" -print0|xargs -0 rm -rf
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####show limits
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
xargs --show-limits
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####move files to folder
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -name "*.bak" -print 0|xargs -0 -I {} mv {} ~/old
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -name "*.bak" -print 0|xargs -0 -I file mv file ~/old
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####move first 100th files to a directory (e.g. d1)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls |head -100|xargs -I {} mv {} d1
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####parallel
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
time echo {1..5} |xargs -n 1 -P 5 sleep
```
a lot faster than
```bash
time echo {1..5} |xargs -n1 sleep
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####copy all files from A to B
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find /dir/to/A -type f -name "*.py" -print 0| xargs -0 -r -I file cp -v -p file --target-directory=/path/to/B
```
2016-06-14 06:57:38 +00:00
//v: verbose|
//p: keep detail (e.g. owner)
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####with sed
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls |xargs -n1 -I file sed -i '/^Pos/d' filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####add the file name to the first line of file
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls |sed 's/.txt//g'|xargs -n1 -I file sed -i -e '1 i\>file\' file.txt
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####count all files
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls |xargs -n1 wc -l
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####to filter txt to a single line
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls -l| xargs
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####count files within directories
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo mso{1..8}|xargs -n1 bash -c 'echo -n "$1:"; ls -la "$1"| grep -w 74 |wc -l' --
```
2016-06-14 06:57:38 +00:00
// "--" signals the end of options and display further option processing
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####download dependencies files and install (e.g. requirements.txt)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cat requirements.txt| xargs -n1 sudo pip install
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####count lines in all file, also count total lines
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
ls|xargs wc -l
```
2016-06-14 06:57:38 +00:00
2016-06-14 07:55:08 +00:00
##Find
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
2016-06-14 08:10:45 +00:00
#####list all sub directory/file in the current directory
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find .
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####list all files under the current directory
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -type f
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####list all directories under the current directory
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -type d
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####edit all files under current directory (e.g. replace 'www' with 'ww')
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . name '*.php' -exec sed -i 's/www/w/g' {} \;
```
2016-06-14 07:55:08 +00:00
if no subdirectory
2016-07-01 10:52:19 +00:00
```bash
replace "www" "w" -- *
```
2016-06-14 06:57:38 +00:00
//a space before *
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####find and output only filename (e.g. "mso")
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find mso*/ -name M* -printf "%f\n"
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####find and delete file with size less than (e.g. 74 byte)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
find . -name "*.mso" -size -74c -delete
```
2016-06-14 06:57:38 +00:00
//M for MB, etc
2016-06-16 06:44:57 +00:00
##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)
2016-07-01 10:52:19 +00:00
```bash
while read a b c; do echo $(($c-$b));done < <(head filename)
```
2016-06-16 06:44:57 +00:00
//there is a space between the two '<'s
#####while loop, sum up column subtraction
2016-07-01 10:52:19 +00:00
```bash
i=0; while read a b c; do ((i+=$c-$b)); echo $i; done < <(head filename)
```
2016-06-16 06:44:57 +00:00
#####if loop
2016-07-01 10:52:19 +00:00
```bash
if (($j==$u+2))
```
2016-06-16 06:44:57 +00:00
//(( )) use for arithmetic operation
2016-07-01 10:52:19 +00:00
```bash
if [[$age >21]]
```
2016-06-16 06:44:57 +00:00
//[[ ]] use for comparison
#####for loop
2016-07-01 10:52:19 +00:00
```bash
for i in $(ls); do echo file $i;done
```
2016-06-16 06:44:57 +00:00
##Download
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
#####download all from a page
2016-07-01 10:52:19 +00:00
```bash
wget -r -l1 -H -t1 -nd -N -np -A mp3 -e robots=off http://example.com
```
2016-06-16 06:44:57 +00:00
//-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
2016-06-27 05:54:48 +00:00
##Random
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
#####random pick 100 lines from a file
2016-07-01 10:52:19 +00:00
```bash
shuf -n 100 filename
```
2016-06-27 05:54:48 +00:00
#####random order (lucky draw)
2016-07-01 10:52:19 +00:00
```bash
for i in a b c d e; do echo $i; done| shuf
```
2016-06-27 05:54:48 +00:00
#####echo series of random numbers between a range (e.g. generate 15 random numbers from 0-10)
2016-07-01 10:52:19 +00:00
```bash
shuf -i 0-10 -n 15
```
2016-06-27 05:54:48 +00:00
#####echo a random number
2016-07-01 10:52:19 +00:00
```bash
echo $RANDOM
```
2016-06-27 05:54:48 +00:00
#####random from 0-9
2016-07-01 10:52:19 +00:00
```bash
echo $((RANDOM % 10))
```
2016-06-27 05:54:48 +00:00
#####random from 1-10
2016-07-01 10:52:19 +00:00
```bash
echo $(((RANDOM %10)+1))
```
2016-06-27 05:54:48 +00:00
2016-06-14 07:55:08 +00:00
##Others
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
2016-06-14 08:10:45 +00:00
#####remove newline / nextline
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
tr --delete '\n' <input.txt >output.txt
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####replace newline
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
tr '\n' ' ' <filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####compare files (e.g. fileA, fileB)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
diff fileA fileB
```
2016-06-14 06:57:38 +00:00
//a: added; d:delete; c:changed
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sdiff fileA fileB
```
2016-06-14 06:57:38 +00:00
//side-to-side merge of file differences
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####number a file (e.g. fileA)
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
nl fileA
```
2016-06-14 06:57:38 +00:00
or
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
nl -nrz fileA
```
2016-06-14 06:57:38 +00:00
//add leading zeros
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####combine/ paste two files (e.g. fileA, fileB)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
paste fileA fileB
```
2016-06-14 06:57:38 +00:00
//default tab seperated
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####reverse string
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo 12345| rev
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####read .gz file without extracting
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
zmore filename
```
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
zless filename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####run in background, output error file
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
(command here) 2>log &
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
(command here) 2>&1| tee logfile
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
(command here) 2>&1 >>outfile
```
2016-06-14 06:57:38 +00:00
//0: standard input; 1: standard output; 2: standard error
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####send mail
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo 'heres the content'| mail -A 'file.txt' -s 'mail.subject' me@gmail.com
```
2016-06-14 06:57:38 +00:00
//use -a flag to set send from (-a "From: some@mail.tld")
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
#####.xls to csv
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
xls2csv filename
```
2016-06-14 08:10:45 +00:00
#####append to file (e.g. hihi)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
echo 'hihi' >>filename
```
2016-06-14 06:57:38 +00:00
2016-06-16 06:44:57 +00:00
#####make BEEP sound
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
speaker-test -t sine -f 1000 -l1
```
#####set beep duration
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
(speaker-test -t sine -f 1000) & pid=$!;sleep 0.1s;kill -9 $pid
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####history edit/ delete
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
~/.bash_history
```
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
history -d [line_number]
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####get last history/record filename
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
head !$
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####clean screen
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
clear
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
Ctrl+l
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####send data to last edited file
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cat /directory/to/file
echo 100>!$
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####run history number (e.g. 53)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
!53
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####run last command
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
!!
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####run last command that began with (e.g. cat filename)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
!cat
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
!c
```
2016-06-14 06:57:38 +00:00
//run cat filename again
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####extract .xf
2016-06-14 07:55:08 +00:00
1.unxz filename.tar.xz
2.tar -xf filename.tar
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####install python package
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
pip install packagename
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####Download file if necessary
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
data=file.txt
url=http://www.example.com/$data
if [! -s $data];then
echo "downloading test data..."
wget $url
fi
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####wget to a filename (when a long name)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
wget -O filename "http://example.com"
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####wget files to a folder
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
wget -P /path/to/directory "http://example.com"
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####delete current bash command
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
Ctrl+U
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
Ctrl+C
```
2016-06-14 07:55:08 +00:00
2016-06-14 06:57:38 +00:00
or
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
Alt+Shift+#
```
2016-06-14 06:57:38 +00:00
//to make it to history
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####add things to history (e.g. "addmetohistory")
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
#addmetodistory
```
2016-06-14 06:57:38 +00:00
//just add a "#" before~~
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####sleep awhile or wait for a moment or schedule a job
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
sleep 5;echo hi
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####count the time for executing a command
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
time echo hi
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####backup with rsync
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
rsync -av filename filename.bak
rsync -av directory directory.bak
rsync -av --ignore_existing directory/ directory.bak
rsync -av --update directory directory.bak
```
2016-06-14 06:57:38 +00:00
//skip files that are newer on receiver (i prefer this one!)
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####make all directories at one time!
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
mkdir -p project/{lib/ext,bin,src,doc/{html,info,pdf},demo/stat}
```
2016-06-14 06:57:38 +00:00
//-p: make parent directory
//this will create project/doc/html/; project/doc/info; project/lib/ext ,etc
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####run command only if another command returns zero exit status (well done)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cd tmp/ && tar xvf ~/a.tar
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####run command only if another command returns non-zero exit status (not finish)
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cd tmp/a/b/c ||mkdir -p tmp/a/b/c
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####extract to a path
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
tar xvf -C /path/to/directory filename.gz
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####use backslash "\" to break long command
2016-06-14 07:55:08 +00:00
2016-07-01 10:52:19 +00:00
```bash
cd tmp/a/b/c \
> || \
>mkdir -p tmp/a/b/c
```
2016-06-14 06:57:38 +00:00
2016-06-14 08:10:45 +00:00
#####get pwd
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
VAR=$PWD; cd ~; tar xvf -C $VAR file.tar
```
2016-06-14 06:57:38 +00:00
//PWD need to be capital letter
2016-06-14 08:10:45 +00:00
#####list file type of file (e.g. /tmp/)
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
file /tmp/
```
2016-06-14 06:57:38 +00:00
//tmp/: directory
2016-06-14 08:03:32 +00:00
2016-06-14 08:10:45 +00:00
#####bash script
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
#!/bin/bash
file=${1#*.}
```
2016-06-14 06:57:38 +00:00
//remove string before a "."
2016-06-14 08:03:32 +00:00
2016-07-01 10:52:19 +00:00
```bash
file=${1%.*}
```
2016-06-14 06:57:38 +00:00
//remove string after a "."
2016-06-16 06:44:57 +00:00
#####search from history
2016-07-01 10:52:19 +00:00
```bash
Ctrl+r
```
2016-06-16 06:44:57 +00:00
#####python simple HTTP Server
2016-07-01 10:52:19 +00:00
```bash
python -m SimpleHTTPServer
```
2016-06-16 06:44:57 +00:00
#####variables
2016-07-01 10:52:19 +00:00
```bash
{i/a/,}
```
2016-06-16 06:44:57 +00:00
e.g. replace all
2016-07-01 10:52:19 +00:00
```bash
{i//a/,}
```
2016-06-16 06:44:57 +00:00
//for variable i, replace all 'a' with a comma
#####read user input
2016-07-01 10:52:19 +00:00
```bash
read input
echo $input
```
2016-06-16 06:44:57 +00:00
#####generate sequence 1-10
2016-07-01 10:52:19 +00:00
```bash
seq 10
```
2016-06-16 06:44:57 +00:00
#####sum up input list (e.g. seq 10)
2016-07-01 10:52:19 +00:00
```bash
seq 10|paste -sd+|bc
```
2016-06-16 06:44:57 +00:00
#####find average of input list/file
2016-07-01 10:52:19 +00:00
```bash
i=`wc -l filename|cut -d ' ' -f1`; cat filename| echo "scale=2;(`paste -sd+`)/"$i|bc
```
2016-06-16 06:44:57 +00:00
#####generate all combination (e.g. 1,2)
2016-07-01 10:52:19 +00:00
```bash
echo {1,2}{1,2}
```
2016-06-16 06:44:57 +00:00
//1 1, 1 2, 2 1, 2 2
#####generate all combination (e.g. A,T,C,G)
2016-07-01 10:52:19 +00:00
```bash
set = {A,T,C,G}
group= 5
for ((i=0; i<$group; i++));do
2016-06-16 06:44:57 +00:00
repetition=$set$repetition;done
bash -c "echo "$repetition""
2016-07-01 10:52:19 +00:00
```
2016-06-16 06:44:57 +00:00
#####read file content to variable
2016-07-01 10:52:19 +00:00
```bash
foo=$(<test1)
```
2016-06-16 06:44:57 +00:00
#####echo size of variable
2016-07-01 10:52:19 +00:00
```bash
echo ${#foo}
```
2016-06-16 06:44:57 +00:00
#####array
2016-07-01 10:52:19 +00:00
```bash
declare -A array=()
```
2016-06-16 06:44:57 +00:00
#####send a directory
2016-07-01 10:52:19 +00:00
```bash
scp -r directoryname user@ip:/path/to/send
```
2016-06-16 06:44:57 +00:00
2016-06-14 06:57:38 +00:00
2016-06-16 06:52:03 +00:00
##System
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
#####snapshot of the current processes
2016-07-01 10:52:19 +00:00
```bash
ps
```
2016-06-16 06:52:03 +00:00
#####check graphics card
2016-07-01 10:52:19 +00:00
```bash
lspci
```
2016-06-14 06:57:38 +00:00
2016-06-16 06:52:03 +00:00
#####show IP address
2016-07-01 10:52:19 +00:00
```bash
$ip add show
```
2016-06-16 06:52:03 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
ifconfig
```
2016-06-16 06:52:03 +00:00
#####check system version
2016-07-01 10:52:19 +00:00
```bash
cat /etc/*-release
```
2016-06-14 06:57:38 +00:00
2016-06-16 06:52:03 +00:00
#####Linux Programmer's Manuel: hier- description of the filesystem hierarchy
2016-07-01 10:52:19 +00:00
```bash
man hier
```
2016-06-16 06:52:03 +00:00
#####list job
2016-07-01 10:52:19 +00:00
```bash
jobs -l
```
2016-06-16 06:52:03 +00:00
#####export PATH
2016-07-01 10:52:19 +00:00
```bash
export PATH=$PATH:~/path/you/want
```
2016-06-16 06:52:03 +00:00
#####make file execuable
2016-07-01 10:52:19 +00:00
```bash
chmod +x filename
```
2016-06-16 06:52:03 +00:00
//you can now ./filename to execute it
#####list screen
2016-07-01 10:52:19 +00:00
```bash
screen -d -r
```
2016-06-16 06:52:03 +00:00
#####echo screen name
2016-07-01 10:52:19 +00:00
```bash
screen -ls
```
2016-06-16 06:52:03 +00:00
#####check system (x86-64)
2016-07-01 10:52:19 +00:00
```bash
uname -i
```
2016-06-16 06:52:03 +00:00
#####surf the net
2016-07-01 10:52:19 +00:00
```bash
links www.google.com
```
2016-06-16 06:52:03 +00:00
#####add user, set passwd
2016-07-01 10:52:19 +00:00
```bash
useradd username
passwd username
```
2016-06-16 06:52:03 +00:00
#####edit variable for bash, (e.g. displaying the whole path)
2016-07-01 10:52:19 +00:00
```bash
1. joe ~/.bash_profile
2. export PS1='\u@\h:\w\$'
```
//$PS1 is a variable that defines the makeup and style of the command prompt
```bash
3. source ~/.bash_profile
```
2016-06-16 06:52:03 +00:00
#####edit environment setting (e.g. alias)
2016-07-01 10:52:19 +00:00
```bash
1. joe ~/.bash_profile
2. alias pd="pwd" //no more need to type that 'w'!
3. source ~/.bash_profile
```
2016-06-16 06:52:03 +00:00
#####list environment variables (e.g. PATH)
2016-07-01 10:52:19 +00:00
```bash
$echo $PATH
```
2016-06-16 06:52:03 +00:00
//list of directories separated by a colon
#####list all environment variables for current user
2016-07-01 10:52:19 +00:00
```bash
$env
```
2016-06-16 06:52:03 +00:00
#####show partition format
2016-07-01 10:52:19 +00:00
```bash
lsblk
```
2016-06-16 06:52:03 +00:00
#####soft link program to bin
2016-07-01 10:52:19 +00:00
```bash
ln -s /path/to/program /home/usr/bin
```
2016-06-16 06:52:03 +00:00
//must be the whole path to the program
#####show hexadecimal view of data
2016-07-01 10:52:19 +00:00
```bash
hexdump -C filename.class
```
2016-06-16 06:52:03 +00:00
#####jump to different node
2016-07-01 10:52:19 +00:00
```bash
rsh node_name
```
2016-06-16 06:52:03 +00:00
#####check port (active internet connection)
2016-07-01 10:52:19 +00:00
```bash
netstat -tulpn
```
2016-06-16 06:52:03 +00:00
#####find whick link to a file
2016-07-01 10:52:19 +00:00
```bash
readlink filename
```
2016-06-16 06:52:03 +00:00
#####check where a command link to (e.g. python)
2016-07-01 10:52:19 +00:00
```bash
which python
```
2016-06-16 06:52:03 +00:00
#####list total size of a directory
2016-07-01 10:52:19 +00:00
```bash
du -hs .
```
2016-06-16 06:52:03 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
du -sb
```
2016-06-16 06:52:03 +00:00
#####copy directory with permission setting
2016-07-01 10:52:19 +00:00
```bash
cp -rp /path/to/directory
```
2016-06-16 06:52:03 +00:00
#####store current directory
2016-07-01 10:52:19 +00:00
```bash
pushd . $popd ;dirs -l
```
2016-06-16 06:52:03 +00:00
#####show disk usage
2016-07-01 10:52:19 +00:00
```bash
df -h
```
2016-06-16 06:52:03 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
du -h
```
2016-06-16 06:52:03 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
du -sk /var/log/* |sort -rn |head -10
```
2016-06-16 06:52:03 +00:00
#####show current runlevel
2016-07-01 10:52:19 +00:00
```bash
runlevel
```
2016-06-16 06:52:03 +00:00
#####switch runlevel
2016-07-01 10:52:19 +00:00
```bash
init 3
```
or
```bash
telinit 3
```
2016-06-16 06:52:03 +00:00
#####permanently modify runlevel
2016-07-01 10:52:19 +00:00
```bash
1. edit /etc/init/rc-sysinit.conf
2. env DEFAULT_RUNLEVEL=2
```
2016-06-16 06:52:03 +00:00
#####become root
2016-07-01 10:52:19 +00:00
```bash
su
```
2016-06-16 06:52:03 +00:00
#####become somebody
2016-07-01 10:52:19 +00:00
```bash
su somebody
```
2016-06-14 06:57:38 +00:00
2016-06-17 10:55:54 +00:00
#####report user quotes on device
2016-07-01 10:52:19 +00:00
```bash
requota -auvs
```
2016-06-17 10:55:54 +00:00
#####get entries in a number of important databases
2016-07-01 10:52:19 +00:00
```bash
getent database_name
```
2016-06-17 10:55:54 +00:00
(e.g. the 'passwd' database)
2016-07-01 10:52:19 +00:00
```bash
getent passwd
```
2016-06-17 10:55:54 +00:00
//list all user account (all local and LDAP)
(e.g. fetch list of grop accounts)
2016-07-01 10:52:19 +00:00
```bash
getent group
```
2016-06-17 10:55:54 +00:00
//store in database 'group'
#####little xwindow tools
2016-07-01 10:52:19 +00:00
```bash
xclock
xeyes
```
2016-06-17 10:55:54 +00:00
#####change owner of file
2016-07-01 10:52:19 +00:00
```bash
chown user_name filename
chown -R user_name /path/to/directory/
```
2016-06-17 10:55:54 +00:00
//chown user:group filename
#####list current mount detail
2016-07-01 10:52:19 +00:00
```bash
df
```
2016-06-17 10:55:54 +00:00
#####list current usernames and user-numbers
2016-07-01 10:52:19 +00:00
```bash
cat /etc/passwd
```
2016-06-17 10:55:54 +00:00
#####get all username
2016-07-01 10:52:19 +00:00
```bash
getent passwd| awk '{FS="[:]"; print $1}'
```
2016-06-17 10:55:54 +00:00
#####show all users
2016-07-01 10:52:19 +00:00
```bash
compgen -u
```
2016-06-17 10:55:54 +00:00
#####show all groups
2016-07-01 10:52:19 +00:00
```bash
compgen -g
```
2016-06-17 10:55:54 +00:00
#####show group of user
2016-07-01 10:52:19 +00:00
```bash
group username
```
2016-06-17 10:55:54 +00:00
#####show uid, gid, group of user
2016-07-01 10:52:19 +00:00
```bash
id username
```
2016-06-17 10:55:54 +00:00
#####check if it's root
2016-07-01 10:52:19 +00:00
```bash
if [$(id -u) -ne 0];then
2016-06-17 10:55:54 +00:00
echo "You are not root!"
exit;
2016-07-01 10:52:19 +00:00
fi
```
2016-06-17 10:55:54 +00:00
//'id -u' output 0 if it's not root
#####find out CPU information
2016-07-01 10:52:19 +00:00
```bash
more /proc/cpuinfo
```
2016-06-17 10:55:54 +00:00
or
2016-07-01 10:52:19 +00:00
```bash
lscpu
```
2016-06-17 10:55:54 +00:00
#####set quota for user (e.g. disk soft limit: 120586240; hard limit: 125829120)
2016-07-01 10:52:19 +00:00
```bash
setquota username 120586240 125829120 0 0 /home
```
2016-06-17 10:55:54 +00:00
#####show quota for user
2016-07-01 10:52:19 +00:00
```bash
quota -v username
```
2016-06-17 10:55:54 +00:00
#####fork bomb
2016-07-01 10:52:19 +00:00
```bash
:(){:|:&};:
```
2016-06-17 10:55:54 +00:00
//dont try this at home
#####check user login
2016-07-01 10:52:19 +00:00
```bash
lastlog
```
2016-06-17 10:55:54 +00:00
#####edit path for all users
2016-07-01 10:52:19 +00:00
```bash
joe /etc/environment
```
2016-06-17 10:55:54 +00:00
//edit this file
#####show running processes
2016-07-01 10:52:19 +00:00
```bash
ps aux
```
2016-06-17 10:55:54 +00:00
#####find maximum number of processes
2016-07-01 10:52:19 +00:00
```bash
cat /proc/sys/kernal/pid_max
```
2016-06-17 10:55:54 +00:00
#####show and set user limit
2016-07-01 10:52:19 +00:00
```bash
ulimit -u
```
2016-06-14 06:57:38 +00:00
=-=-=-=-=-A lot more coming!! =-=-=-=-=-=-=-=-=-=waitwait-=-=-=-=-=-=-=-=-=-