Topic: Concordance To Shakespeare Shakespeare Concordance
Not finding your answer? Try searching the web for Concordance To Shakespeare Shakespeare Concordance
Answers to Common Questions
What is the shortest script to construct the concordance of Shake...
I have written a sloppy version in two lines. Supposing you start with the Gutenberg text in a file called "shakes": tr ' ' '\n' < shakes | tr -d ',()&?!.\"\-\[\]:;[0-9]{}<>_|~'\' | sort | uniq > words while read WORD; do echo $WORD; grep... Read More »
Source: http://www.quora.com/What-is-the-shortest-script-to-construct-the...