admin-scripts/bin/.archived/tx-stats-html.nu

16 lines
475 B
Plaintext
Raw Normal View History

2024-03-26 05:05:38 +01:00
#!/usr/bin/env nu
2024-04-02 19:32:26 +02:00
let old_head = "<html><style>body { background-color:white;color:black; }</style><body>"
let new_head = (
["<html><head><title>Torrent Stats</title><link type="text/css" rel="stylesheet" href="style2.css"/></head><body><h4>Last updated:", (date now | format date "%F %T%:z"), "</h4>"]
| str join ' '
2024-03-26 05:05:38 +01:00
)
2024-04-02 19:32:26 +02:00
(
transmission-remote -l
| from ssv
| to html
| str replace ($old_head) ($new_head)
| save -f -r /home/jas/public/html/torrentstats.html
)