查看文件有多少行
wc -l a.text
查看文件中有多少字
wc -w a.text
查看字节数--bytes或——chars:只显示Bytes数
wc -c a.text
查看文件中最长的那一行
wc -L a.text
从file1中截取2到6行保存在file2中,你可以根据需求进行修改
sed -n '2, 6p' file1 > file2
wc -l a.text
wc -w a.text
wc -c a.text
wc -L a.text
sed -n '2, 6p' file1 > file2
本文标题:Linux文件处理
本文链接:https://www.haomeiwen.com/subject/aonrectx.html
网友评论