blob: fc9ccb4d0683851c396ba4ea75be338a4411d0d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Get the suffix from a Youtube video, or Invidious instance.
# https://youtube.com/watch?v=dQw4w9WgXcQ -> dQw4w9WgXcQ
# Pass the -w flag if you want to keep the watch?v=
# Usage:
# yt-suffix PATH (-w)
if isflag '-w' "$@" ; then
echo "watch?v="
fi
echo $1 | awk -F'/' '{print $4}' | awk -F'=' '{print $2}'
|