The use of $_ and ~/RE/ is discouraged.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2002-12-19 20:30:05 +00:00
Родитель d46e835344
Коммит 913bc18761
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -2,8 +2,10 @@
# list all files but .*/*~/*.o
dirp = Dir.open(".")
for f in dirp
$_ = f
unless (~/^\./ || ~/~$/ || ~/\.o/)
case f
when /^\./, /~$/, /\.o/
# do not print
else
print f, "\n"
end
end