StatusR

I love the command line interface..I love the terminal. i wanted to create a script that runs after login on my ubuntu machine and do something or show something interesting -at least to me- so I started thinking of something I can do with a script that will show information that I might find it useful. StatusR The main idea of this bash script is to get and show status report quickly on weather, Internet status, Google DNS status, OpenDNS status, Internet threat level, and space weather. Possibly other information in the future. it could be altered easily to show more or less. its great for fun and can be really useful. Its also a great way to learn about bash script.  here is the code #!/bin/bash ######################################################### # The main idea of this bash script is to # # get and show status report quickly on # # Weather, Internet threat level, and Space # # Weather. Possibly other information in the # # future. # # It could be altered easily to show more or # # less. # ######################################################### # https://sourceforge.net/projects/statusr # originally written by: Mohamed Adel # e-mail: mohamedation[at]gmail[dot]com # this v2 is a minor edit […]

Read More from

StatusR