1

我想知道一种读取文件并删除所有以数字开头的文本行的好方法,即使用一些shell脚本[0-9]。提前致谢!

4

2 回答 2

2

你可以使用这样的东西:

grep -v '^[0-9]' input-file > output-file
于 2012-11-09T14:23:26.767 回答
1

Using sed:

sed '/^[0-9]/d' file > outfile

If you have GNU sed, the original file itself can be updated:

sed -i '/^[0-9]/d' file 
于 2012-11-09T15:06:54.857 回答