rtt-f030/components/dfs/filesystems/uffs/tools/chomp_uffs_perror.rb
bernard.xiong@gmail.com 7b76fb6ecd add UFFS 1.3.2-4 (http://sourceforge.net/projects/uffs)
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@888 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-09-02 23:55:14 +00:00

26 lines
470 B
Ruby

#usage:
# find . -name "*.c" | xargs /usr/bin/ruby path/to/chomp_uffs_perror.rb
#
ARGV.each do |file|
lines = []
count = 0
File.open(file).each_line do |line|
if line =~ /^(.*uffs_Perror.+)PFX(\s*".+)$/
lines << ($1 + $2)
count += 1
#puts ($1 + $2)
else
lines << line
end
end
if count > 0
f = File.open(file, "w")
lines.each do |s|
f.puts s
end
f.close
puts "Fix file #{file}, modified lines: #{count}"
end
end