From f5526c4cfbe0803212050dc53a487e5c3b38bd4b Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 14 Feb 2024 02:23:53 +0100 Subject: Update scripts --- bin/extra/magnet2torrent | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 bin/extra/magnet2torrent (limited to 'bin/extra/magnet2torrent') diff --git a/bin/extra/magnet2torrent b/bin/extra/magnet2torrent new file mode 100755 index 0000000..0a1f83e --- /dev/null +++ b/bin/extra/magnet2torrent @@ -0,0 +1,27 @@ +#!/bin/sh + +################################# +# # +# Bash script to convert a # +# magnet link to a torrent file # +# # +# StrickStuff.com # +# # +################################# + + +# Check that the user entered a valid magnet link +if [ "$#" -ne 1 ] || [ "${1##*magnet*}" ] +then + echo "Usage: $0 " + exit 1 +fi + +# Extract the info hash from the magnet link +hash="${1##*btih:}" +hash="${hash%%&*}" + +# Download the torrent file from a torrent website +torrent_file="${hash}.torrent" +wget "https://itorrents.org/torrent/${hash}.torrent" -O "$torrent_file" +echo "Torrent file written to ${torrent_file}" -- cgit v1.2.3