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