统计文件的字符数、行数:wc
语法:wc [选项] 文件
说明:该命令统计给定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。
该命令各选项含义如下:
-c 统计字节数。
-l 统计行数
-w统计字数。
选项可以一起使用
输入:wc -l nowcoder.txt
输出:9 nowcoder
要想让输出只有行数,则输入 wc -l< nowcoder.txt
显示文件的前n行:head
head -n 行数 文件
显示文件的倒数n行:tail
tail -n 行数 文件
输出0到500中7的倍数
for(( i=0;i<=500;i++))
do
a=$[$i%7]
if test $a -eq 0
then
echo $i;
fi
done
输出第五行内容
cat nowcoder.txt | tail -n +5 | head -n 1
显示文件的空行
i=1
while read line;
do
if [ -z $line ];
then
echo $i
fi
i=$[i+1]
done < nowcoder.txt