Files
perl-file-homedir/check-version.sh
T
2026-03-07 22:00:51 +02:00

10 lines
209 B
Bash

#!/bin/bash
# Github repository
MODULE="File::HomeDir"
# Get version using the MetaCPAN Rest API
VERSION=$(curl -s -L https://fastapi.metacpan.org/download_url/"$MODULE" | jq -r '.version')
echo "$VERSION"