假如我有很多php文件(.php)并且我只想提取包含某些单词的代码块,例如$这 - > TE 知道我是怎么做的吗?使用红宝石会更好吗?
if ($attachments && count($attachments) > 0) {
echo "\n\n{$this->te('Attachments')}:\n";
...
答案 0 :(得分:1)
您可以使用grep
:
grep '$this->te' -R *.php -n
如果你想用Ruby做类似的事情,你可以使用类似的东西:
Dir.glob('*.php').each do |x|
File.read(x).split("\n").each_with_index do |line, n|
puts "Found at #{x}:#{n+1}" if line["$this->te"]
end
end