We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2a27a commit 96afc2bCopy full SHA for 96afc2b
tracker-add-auto.sh
@@ -11,11 +11,11 @@ for base_url in https://raw.githubusercontent.com/ngosang/trackerslist/master/tr
11
echo "URL for ${base_url}"
12
echo "Adding trackers for $torrent_name..."
13
for tracker in $(curl -# "${base_url}") ; do
14
- echo "${tracker}..."
+ echo -n "${tracker}..."
15
if transmission-remote --auth="$auth" --torrent "${torrent_hash}" -td "${tracker}" | grep -q 'success'; then
16
- echo -e 'failed.'
+ echo ' failed.'
17
else
18
- echo -e 'done.'
+ echo ' done.'
19
fi
20
done
21
0 commit comments