On Thu, Mar 4, 2021 at 10:05 AM Jose Senna <jasse...@mail.com> wrote:
>
>  Did anyone else look at this ?
>   https://www.nature.com/articles/d41586-021-00263-0
>  Command line is still (much) alive.
>
>


Interesting article, thanks for sharing. This article is geared for
Unix (Linux or Mac) but the concepts apply to FreeDOS. You can still
do a lot at the command line.

Like others, this article reminds me of using the Unix command line.
And it reminds me of an article I wrote for CloudSavvyIT Linux some
months ago, about how to check spelling "the old school" Unix way:

https://www.cloudsavvyit.com/5439/how-to-check-spelling-the-old-school-unix-way/

$cat document | tr A-Z a-z | tr -d ',.:;()?!' | tr ' ' '\n' | sort |
uniq | comm -2 -3 - words


That Unix command line converts a text file into lowercase, then
deletes all punctuation and special characters, splits lines at
spaces, sorts the result, looks for unique words .. then compares that
list of words to the system dictionary (called "words"). The command
outputs a list of misspelled words (words that appear in the original
document that do not appear in the system dictionary).


Jim


_______________________________________________
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user

Reply via email to