#!/bin/bash # Check if a parameter is provided if [ -z "$1" ]; then echo "Usage: $0 " exit 1 fi # Assign the parameter to a variable FOO="$1" # Run the streamlink command streamlink.exe "$FOO" best