在文件的开头收集数字

时间:2011-06-03 12:32:28

标签: sed awk grep

我有一个包含一些数字的文本文件,例如

There are 60 nuts and 35 apples,
but only 24 pears.

我想在相同文件的开头收集这些数字(60,35,24),特别是我想要处理后,要读取的文件

read "60"
read "35"
read "24"

There are 60 nuts and 35 apples,
but only 24 pears.

我怎么能使用* nix中提供的文本操作通行费之一?

2 个答案:

答案 0 :(得分:2)

您可以编写ed会话脚本来编辑文件:

{ 
  echo 0a    # insert text at the beginning of the file
  grep -o '[0-9]\+' nums.txt | sed 's/.*/read "&"/'
  echo ""
  echo .     # end insert mode
  echo w     # save
  echo q     # quit
} | ed nums.txt

更简洁:

printf "%s\n" 0a "$(grep -o '[0-9]\+' nums.txt|sed 's/.*/read "&"/')" "" . w q | ed nums.txt

答案 1 :(得分:1)

一种方法是:

egrep -o [0-9]+ input | sed -re 's/([0-9]+)/read "\1"/' > /tmp/foo
cat input >> /tmp/foo 
mv /tmp/foo input