mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
10 lines
138 B
Bash
Executable File
10 lines
138 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
declare path=$(mktemp)
|
|
if [[ $1 != "" ]]; then
|
|
path="$1"
|
|
fi
|
|
|
|
curl $(twitch lasturl) -o "${path}" -s
|
|
echo "${path}"
|