diff options
| author | ivan-boikov <ik.boikov.public@protonmail.com> | 2024-05-12 18:48:06 +0200 |
|---|---|---|
| committer | ivan-boikov <ik.boikov.public@protonmail.com> | 2024-05-12 18:48:17 +0200 |
| commit | 5e29f15b7794db9cb038fc0ccfcd9a75612762d3 (patch) | |
| tree | 03373d1ad99d92a3aca42df178845d2190ccd990 | |
| parent | 34086df89d3af6b85585be60d4d0b9ac86a2e086 (diff) | |
Dirty last version checker
| -rwxr-xr-x | get-last-versions | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/get-last-versions b/get-last-versions new file mode 100755 index 0000000..dc8fcc0 --- /dev/null +++ b/get-last-versions @@ -0,0 +1,12 @@ +#!/bin/sh + +lv() { + curl -sL "$1" | grep '<title>Release ' +} + +ls www-plugins/ublock-origin-bin | tail -n1 +lv "https://github.com/gorhill/uBlock/releases/latest" +ls www-plugins/libredirect-bin | tail -n1 +lv "https://github.com/libredirect/browser_extension/releases/latest" +ls www-plugins/istilldontcareaboutcookies-bin | tail -n1 +lv "https://github.com/OhMyGuus/I-Still-Dont-Care-About-Cookies/releases/latest" |
