Linux distribution created in India that is suitable for Hindi and Punjabi languages.

There are many Linux distributions in the world, but are there Linux distros created in India? Yes there are. Hamara Linux is an Indian developed Linux distribution, with good language support. Supported languages in Linux: Assamese, Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Punjabi, Sinhalese, Tamil and Telugu. Website: https://www.hamaralinux.org/blog/. Hamara Linux is based upon … Read more

Some awesome tricks with awk, grep and sed.

Reading a large text file and then finding all words that contain between 5 and 7 vowels. Notice I am not using cat. jason@Yog-Sothoth:~/Documents$ egrep ‘^([^aieou]*[aieou]){5,7}[^aieou]*$’ < pg768.txt | wc -l 284jason@Yog-Sothoth:~/Documents$ egrep ‘^([^aieou]*[aieou]){5,7}[^aieou]*$’ < pg768.txt | wc -l 284 Count the number of times a single word appears in a text file. jason@Yog-Sothoth:~/Documents$ egrep … Read more