add other

add one to variable/increment a numeric variable
This commit is contained in:
onceupon 2017-02-17 11:25:34 +08:00 committed by GitHub
parent 0c57242c01
commit 17f691fcf0

View File

@ -1322,6 +1322,10 @@ cat file.fastq | paste - - - - | sed 's/^@/>/g'| cut -f1-2 | tr '\t' '\n' >file.
cat file|rev | cut -d/ -f1 | rev
```
#####add one to variable/increment a numeric variable (e.g. $var)
```bash
((var++))
```
##System