题目1:
在文本文档1.txt第5行后面增加如下内容:
# This is a test file.
# Test insert line into this file.
sed -i '5a\This is a test file.\nTest insert line into this file.' 1.txt
sed:a\ 在当前行下面插入文本。 b\ 在当前行上面插入文本。
铭哥:
sed -i "5a # This is a test file.\n# Test insert line into this file." 1.txt
题目2:
有一test.txt文件中内容为0 1 2 3 4 5 6 7 8 9,如何巧妙地运用命令一句话方式解出数字的总和答案(for循环方式除外)
cat test.txt |xargs -n1 |awk '{(tot=tot+$1)};END {print tot}'
cat test.txt |tr "" +|bc
题目3
查看某服务占用系统的总内存(思路:服务对应的单个进程所占用的内存,然后求和)
ps aux |grep ProgranName |sort -nrk4 |awk '{print $4}'|awk '{sum+=$1} END {print "Sum = ", sum}'
注: ProgranName为进程名称