Shiny

  1. #!/usr/bin/ruby  
  2.   
  3. # Purpose: Extracts individual words from the Crimson Editor dictionary file.  
  4. # Remarks: Redirect the output to create a more Unix like "words" file.  
  5.   
  6. words = []  
  7. IO.readlines("/usr/share/dict/cedt.dic").each { |line|   
  8.  line.chomp.split(" ").each { |word|   
  9.   words << word.chomp  
  10.  }  
  11. }  
  12.   
  13. words.sort.each { |word| puts word }  

Comments

Popular Posts