5 lines
155 B
Plaintext
5 lines
155 B
Plaintext
|
#!/bin/bash
|
||
|
VERSION=$1
|
||
|
[ "${VERSION}" ] || exit 1
|
||
|
curl -L "https://dl.pstmn.io/download/version/${VERSION}/linux64" -o postman-${VERSION}-linux-x64.tar.gz
|