18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Need search terms"
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
source /usr/local/src/SharedLibraries/Bash/header
|
||
|
header Configuring...
|
||
|
if [ -z "$2" ]; then
|
||
|
configuretorrent /usr/local/etc/WolfPack/torrentengine
|
||
|
else
|
||
|
configuretorrent "$2"
|
||
|
fi
|
||
|
|
||
|
header Getting magnet link.
|
||
|
getmagnetlink "$(echo $1 | tr '#' "$searchunifier")"
|