mirror of
https://codeberg.org/hyperreal/admin-scripts
synced 2024-11-01 08:03:05 +01:00
16 lines
533 B
Plaintext
Executable File
16 lines
533 B
Plaintext
Executable File
#!/usr/bin/env nu
|
|
|
|
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="https://files.hyperreal.coffee/css/main-style.css"/></head><body><h4>Last updated:", (date now | format date "%F %T%:z"), "</h4>"]
|
|
| str join ' '
|
|
)
|
|
|
|
(
|
|
/home/jas/admin-scripts/list_torrents.py
|
|
| from ssv -m 2
|
|
| to html
|
|
| str replace ($old_head) ($new_head)
|
|
| save -f -r /home/jas/public/html/torrents.html
|
|
)
|