Skip to content

Instantly share code, notes, and snippets.

@DoctorD90
DoctorD90 / torrent_trackers_list_generator.sh
Created September 5, 2021 11:10
Generate a clean formatted trackers list for torrents softwares
#!/bin/bash
# Generate a clean formatted trackers list for torrents softwares
# The newtrackon.com free service is used as main resource
INPUT_FILE="torlist_input.txt"
OUTPUT_FILE="torlist_output.txt"
# Create input file
if [ ! -e "$INPUT_FILE" ]; then