Ruby-如何从文件/文件夹中获取特定关键字

时间:2015-08-06 23:51:46

标签: ruby-on-rails ruby

我需要浏览php中的每个文件夹/文件,以查找此案例翻译格式的特定关键字,例如$this->$translator->

我需要获得这些结果并将其放到新文件中。

以下是我在使用ruby之前尝试的内容。

this = File.readlines("folder_path.php")
#If I need to get any translation that contain $this-> should I use grep? I tried using grep before but not giving result that I need.

that = File.open("new_file.txt", "w")
that << this 
that.close

希望我没有混淆。谢谢。

1 个答案:

答案 0 :(得分:0)

只需使用grep:

grep '$this->' -R *.php -n > result.txt