The Open Text Summarizer (OTS) is an application that removes the fluff from a piece of text to create a succinct summary.
Summarizing text with OTS
Getting ready
The ots package is not part of most Linux standard distributions, but it can be installed with the following command:
apt-get install libots-devel
How to do it...
The OTS application is easy to use. It reads text from a file or from stdin and generates the summary to stdout.
ots LongFile.txt | less
Or
cat LongFile.txt | ots | less
The OTS application can also be used with curl to summarize information from websites. For example,...