зеркало из https://github.com/github/ruby.git
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:
Родитель
d46e835344
Коммит
913bc18761
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче