summaryrefslogtreecommitdiff
path: root/manualPorts/update-all/lastVersion.sh
blob: 2701e3c2a0ef4bc1a76afa274af513f0e95ba19e (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

wget -O - "https://opensources.eckner.net/ls.php?ls=update-all" 2> /dev/null | \
  tr "<>" "\n\n" | \
  grep "^update-all-" | \
  sed "s|^update-all-||" | \
  sort -V | \
  tail -n1