我想在文件的每一行的开头添加一个特定的字符串.所以,如果我在someFile.txt中有以下两行,并希望添加一个日期字符串03/06/2012 with pipe-
Hello|there|john Hello|there|joel
我会-
03/06/2012|Hello|there|john 03/06/2012|Hello|there|joel
如何实现呢?
注意我在文件中有130万行.
$awk '{print "03/06/2012|" $0;}' input.txt > output.txt
在一些平均2010年的硬件上,具有1.3M线的文件大约需要0.8秒.