mirror of
https://codeberg.org/hyperreal/admin-scripts
synced 2024-11-01 16:03:06 +01:00
12 lines
363 B
Plaintext
12 lines
363 B
Plaintext
|
#!/usr/bin/env nu
|
||
|
|
||
|
(
|
||
|
transmission-remote -l |
|
||
|
from ssv |
|
||
|
to html |
|
||
|
str replace '<style>body { background-color:white;color:black; }</style>' '<head><title>Torrent stats</title><link type="text/css" rel="stylesheet" href="style2.css"/></head>' |
|
||
|
save -f -r /home/jas/public/html/torrentstats.html
|
||
|
)
|
||
|
|
||
|
chown jas:jas /home/jas/public/html/torrentstats.html
|