14 lines
210 B
Bash
Executable File
14 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check if a parameter is provided
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <FOO>"
|
|
exit 1
|
|
fi
|
|
|
|
# Assign the parameter to a variable
|
|
FOO="$1"
|
|
|
|
# Run the streamlink command
|
|
streamlink.exe "$FOO" best
|