# Find FreeBSD man pages without EXAMPLES sections. # Make the outputted list into a wiki table. # Isabell Long , 2012 print "||Man page||Status||\n" for i in 1..9 do list = %x(find . -name \*.#{i} -exec grep -L EXAMPLES {} +).split("\n") list.each do |j| print "||#{j}||Not started||\n" end end