mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
16 lines
224 B
Bash
Executable File
16 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
name="$1"
|
|
|
|
if [ -z "$1" ]; then
|
|
name=$TWITCH_LOGIN
|
|
fi
|
|
|
|
if [ -z "${name}" ]; then
|
|
echo "\$TWITCH_LOGIN not set"
|
|
exit 1
|
|
fi
|
|
|
|
youtube-dl -F "https://twitch.tv/$name" \
|
|
| map 'm,^\d+p(\S+)?, && say $&'
|