summaryrefslogtreecommitdiffstats
path: root/timemachine/bin/youtube_random
diff options
context:
space:
mode:
Diffstat (limited to 'timemachine/bin/youtube_random')
-rwxr-xr-xtimemachine/bin/youtube_random22
1 files changed, 22 insertions, 0 deletions
diff --git a/timemachine/bin/youtube_random b/timemachine/bin/youtube_random
new file mode 100755
index 00000000..30ee87f8
--- /dev/null
+++ b/timemachine/bin/youtube_random
@@ -0,0 +1,22 @@
+#!/bin/sh
+set -euf
+
+main() {
+ if [ ! $# -eq 0 ]; then
+ usage
+ fi
+
+ get_random_video
+}
+
+get_random_video() {
+ curl -Ss http://randomyoutube.net/watch | sed -n 's|.*\(http://www\.youtube.com/watch?v=.\{11\}\).*|\1|p'
+}
+
+usage() {
+ echo 'returns a random youtube video.'
+ echo 'scrapes http://randomyoutube.net/'
+ echo 'example: mpv $(youtube_random)'
+}
+
+main