add command [more] and some more example for command [awk]

This commit is contained in:
agxcul 2015-05-06 15:14:49 +08:00
parent 417f47f037
commit 86d1ce58a9
2 changed files with 9 additions and 0 deletions

View File

@ -1,2 +1,8 @@
# sum integers from a file or stdin, one integer per line:
printf '1\n2\n3\n' | awk '{ sum += $1} END {print sum}'
# using specific character as separator to sum integers from a file or stdin
printf '1:2:3' | awk -F ":" '{print $1+$2+$3}'
# print a multiplication table
seq 9 | sed 'H;g' | awk -v RS='' '{for(i=1;i<=NF;i++)printf("%dx%d=%d%s", i, NR, i*NR, i==NR?"\n":"\t")}'

3
cheat/cheatsheets/more Normal file
View File

@ -0,0 +1,3 @@
# To show the file start at line number 5
more +5 file