summaryrefslogtreecommitdiffstats
path: root/.local/bin/peertubetorrent
diff options
context:
space:
mode:
authori-c-u-p <96894903+i-c-u-p@users.noreply.github.com>2022-06-15 15:03:25 +0000
committerGitHub <noreply@github.com>2022-06-15 15:03:25 +0000
commitb63045a0c09f13b8a6cf255f275e5f2b04f8d020 (patch)
tree41fa21a7225bd2b18bc416fdb4ddb91e68c7bae1 /.local/bin/peertubetorrent
parent6207180f7bb12ae81187a0fd1dbfc62d3162ba69 (diff)
downloadeibhear-b63045a0c09f13b8a6cf255f275e5f2b04f8d020.tar.gz
eibhear-b63045a0c09f13b8a6cf255f275e5f2b04f8d020.tar.zst
eibhear-b63045a0c09f13b8a6cf255f275e5f2b04f8d020.zip
use "|" as sed delimiter if pattern has "/" (#1118)
removes the need for "/" to be escaped with a backslash
Diffstat (limited to '.local/bin/peertubetorrent')
-rwxr-xr-x.local/bin/peertubetorrent4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/peertubetorrent b/.local/bin/peertubetorrent
index e89b1c0..4d8f630 100755
--- a/.local/bin/peertubetorrent
+++ b/.local/bin/peertubetorrent
@@ -3,7 +3,7 @@
# first argument is the video link, second is the quality (360, 480 or 1080)
# 13/07/20 - Arthur Bais
-instance=$(echo "$1" | sed "s/\/w.\+//")
-vidid=$(echo "$1" | sed "s/.\+\///")
+instance=$(echo "$1" | sed "s|/w.\+||")
+vidid=$(echo "$1" | sed "s|.\+/||")
link=$(curl -s "$instance/api/v1/videos/$vidid" | grep -o "$instance/download/torrents/.\{37\}$2.torrent")
transadd "$link"