summaryrefslogtreecommitdiff
path: root/scriptlets/rss_torrent_helper.sh
blob: bea25e49f935ae61e6654975e503b25fdb829180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# this helper script is a monument to my personal failings
# a better man would've just modified the parsing in the original script to allow for per-feed downloaders
# but alas


CONFIG_DIR="$HOME/.config/shell-rss-torrent"

for file in $CONFIG_DIR/*.xml; do
    $HOME/stuf/scripts/shell-rss-torrent "$file"
done