This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
# Define the version you want to install | |
VERSION="1.34" # Replace with the desired version if needed | |
# Define the download URL for the specified version | |
URL="https://ftp.gnu.org/gnu/tar/tar-${VERSION}.tar.gz" |