summaryrefslogtreecommitdiff
path: root/sample/dir.rb
blob: f4c3d17c112fa3c134c70ad56f7d9272745e846c (plain)
1
2
3
4
5
6
7
8
9
dirp = Dir.open(".")
dirp.rewind
for f in dirp
  if (~/^\./ || ~/~$/ || ~/\.o/)
  else
    print(f, "\n")
  end
end
dirp.close