summaryrefslogtreecommitdiff
path: root/sample/dir.rb
blob: 1fc0bb2aa862277a3e5edbac9be26af6ba4917fd (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
  if (~/^\./ || ~/~$/ || ~/\.o/)
    print f, "\n"
  end
end
dirp.close