plugfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

corona (325B)


      1 #!/bin/sh
      2 #https://www.youtube.com/watch?v=cQ03v4d3QEo
      3 
      4 curl -s https://corona-stats.online/Australia > ~/.cache/corona
      5 
      6 #grep "Country\|Australia" ~/.cache/corona |
      7 grep "Australia" ~/.cache/corona |
      8 	sed "s/\s*//g ; s/║//g ; s/│/;/g" | 
      9 	sed  's/\x1b\[[0-9;]*m//g' |
     10 	awk -F';' '{print "😷:" $3 " (" $4 ") ☠:" $6}'