标签:shell lock home end 包含 gre shell脚本 head 检查
[root@slave2 testshell]# awk ‘/^$/{print NR}‘ sed.txt 5 [root@slave2 testshell]# cat sed.txt dong shen guan zhen wo wo lai lai le le
张三 40 李四 50 王五 60
[root@slave2 testshell]# cat chengji.txt | awk -F " " ‘{sum+=$2} END{print sum}‘
150
[root@slave2 testshell]# if [ -e sed.txt ] > then > echo "文件存在" > else > echo "文件不存在" > fi 文件存在 [root@slave2 testshell]# if [ -e file.txt ]; then echo "文件存在"; else echo "文件不存在"; fi 文件不存在
[root@slave2 testshell]# vim test.txt 9 8 7 6 5 4 3 2 10 1 ~ "test.txt" 10L, 21C written [root@slave2 testshell]# sort -n test.txt 1 2 3 4 5 6 7 8 9 10 [root@slave2 testshell]# sort -n test.txt | awk ‘{sum+=$1} END {print "sum="sum}‘ sum=55
[root@slave2 testshell]# grep -r "shen" /root/testshell /root/testshell/cut.txt:dong shen si /root/testshell/sed.txt:dong shen [root@slave2 testshell]# grep -r "shen" /root/testshell | cut -d : -f 1 /root/testshell/cut.txt /root/testshell/sed.txt
标签:shell lock home end 包含 gre shell脚本 head 检查
原文地址:https://www.cnblogs.com/zxbdboke/p/10421709.html