summaryrefslogtreecommitdiff
path: root/html.rb
blob: f1adc4b7d83757e5588099e3934de5be338181b2 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env ruby
root = ARGV[0]
tree = {
  "music" => Dir[File.join(root, "music", "*")],
  "videos" => Dir[File.join(root, "videos", "*")],
}
p tree