How to automate checking for Ubuntu 22.4 release

So, Ubuntu 22.04 LTS is due today, but the actual time of release is uncertain. If you are refreshing their site like me to be the first to download it, don’t — automate it instead. Here’s my little bash script to alert me automatically as soon as 22 …


This content originally appeared on DEV Community and was authored by Makar

So, Ubuntu 22.04 LTS is due today, but the actual time of release is uncertain. If you are refreshing their site like me to be the first to download it, don't -- automate it instead. Here's my little bash script to alert me automatically as soon as 22 rolls out:

{
  function func_name () {
    FOUND=`curl -s https://ubuntu.com/download/desktop | grep 'Ubuntu 22'`
    echo $FOUND;
    if [ ! -z "$FOUND" ]; then
      spd-say "Ubuntu 22 is out"
    fi
  }

  export -f func_name

  watch -n 5 -x bash -c func_name
}


This content originally appeared on DEV Community and was authored by Makar


Print Share Comment Cite Upload Translate Updates
APA

Makar | Sciencx (2022-04-21T12:55:01+00:00) How to automate checking for Ubuntu 22.4 release. Retrieved from https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/

MLA
" » How to automate checking for Ubuntu 22.4 release." Makar | Sciencx - Thursday April 21, 2022, https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/
HARVARD
Makar | Sciencx Thursday April 21, 2022 » How to automate checking for Ubuntu 22.4 release., viewed ,<https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/>
VANCOUVER
Makar | Sciencx - » How to automate checking for Ubuntu 22.4 release. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/
CHICAGO
" » How to automate checking for Ubuntu 22.4 release." Makar | Sciencx - Accessed . https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/
IEEE
" » How to automate checking for Ubuntu 22.4 release." Makar | Sciencx [Online]. Available: https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/. [Accessed: ]
rf:citation
» How to automate checking for Ubuntu 22.4 release | Makar | Sciencx | https://www.scien.cx/2022/04/21/how-to-automate-checking-for-ubuntu-22-4-release/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.