l: init dls

This commit is contained in:
lassulus 2023-09-04 13:50:44 +02:00
parent e8821a74cc
commit 820e17ca1b
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ pkgs }:
pkgs.writers.writeDashBin "dls" ''
set -efux
SESSION_ID=$(
curl -Ss -d '{}' http://yellow.r:9091/transmission/rpc -v -o /dev/null 2>&1 |
grep -oP '(?<=X-Transmission-Session-Id: )\w+'
)
${pkgs.curl}/bin/curl -Ss \
http://yellow.r:9091/transmission/rpc \
-H "X-Transmission-Session-Id: $SESSION_ID" \
-d '{"arguments":{"fields":["errorString","eta","isFinished","name","sizeWhenDone","status"]},"method":"torrent-get","tag":4}' |
jq .
''