anndl: Fixed a couple of bugs.
[utils.git] / rbtadd
... / ...
CommitLineData
1#!/bin/sh
2
3if [ $# -lt 1 ]; then
4 echo "usage: btadd URL..." >&2
5 exit 1
6fi
7
8for file in "$@"; do
9 if [ -r "$file" ]; then
10 rsc nerv.dolda2000.com btadd - <"$file" && rm -f "$file"
11 elif [[ "$file" == http*://* ]]; then
12 rsc nerv.dolda2000.com btadd "$file"
13 else
14 echo "rbtadd: $file: unreadable" >&2
15 fi
16done