Skip to content

Instantly share code, notes, and snippets.

View paddydoyle's full-sized avatar

Paddy Doyle paddydoyle

  • Dublin, Ireland
View GitHub Profile
@paddydoyle
paddydoyle / drupal-PSA-003-check.sh
Last active April 25, 2018 16:46 — forked from jerbob92/drupal-PSA-003-check.sh
Check whether Drupal 7.59 and 8.5.3 are released
#!/bin/sh
url="https://ftp.drupal.org/files/projects/drupal-7.59.tar.gz";
if curl --output /dev/null --silent --head --fail "$url"; then
zenity --notification --text 'Drupal 7 Patch Live';
else
echo "URL does not exist: $url";
fi;
url="https://ftp.drupal.org/files/projects/drupal-8.5.3.tar.gz";