summaryrefslogtreecommitdiff
path: root/sample/dir.rb
blob: 2465c4d68ede73434057a9e8eb56ff9a6a1eafee (plain)
1
2
3
4
5
6
7
8
9
10
# directory access
# list all files but .*/*~/*.o
dirp = Dir.open(".")
for f in dirp
  $_ = f
  unless (~/^\./ || ~/~$/ || ~/\.o/)
    print f, "\n"
  end
end
dirp.close