1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-06-13 10:48:31 +00:00
nyaa/utils/batch_upload_torrent.sh
2017-05-17 00:53:54 -07:00

2 lines
137 B
Bash
Executable file

up_t() { curl -F "category=1_2" -F "torrent_file=@$1" 'http://localhost:5500/upload'; }
for x in test_torrent_batch/*; do up_t "$x"; done