asdf-gradle/bin/list-all
2023-02-22 17:41:46 +01:00

11 lines
284 B
Bash
Executable File

#!/bin/sh
export LC_ALL=C
export GRADLE_DISTRIBUTION_URL=${GRADLE_DISTRIBUTION_URL:=https://services.gradle.org/distributions}
curl -s ${GRADLE_DISTRIBUTION_URL}/ |
grep -e "gradle.*-bin.zip\"" |
sed -e "s#^.*gradle-##" -e "s#-bin.zip.*##" |
sort -t. -n |
paste -s -d" " -