#!/bin/sh # play a twitch stream using streamlink __usage=" USAGE: $0 [quality] ARGS: Name of the stream to play [quality] quality to use [default: best] " if [ -z $1 ] || [ $# -gt 2 ] || [ $1 = "--help" ]; then echo -e "$__usage" else streamlink https://twitch.tv/$1 ${2:-best} fi