||
1. 找出文件file.txt中包含给定字符串'example string'的一行文字并输出:
grep -C 1 'example string' file.txt>>output.log
其中1规定了输出字符串附近的一行文字,此参数可改。
2. for 循环
#!/bin/bash for i in 1 2 3 4 5 do echo "Welcome $i times" done |
or
#!/bin/bash
for i in {1..5}
do
echo "Welcome $i times"
done
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-26 03:38
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社