Added {r,}btadd.
[utils.git] / rbtadd
CommitLineData
0c0ef5c7 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 pc17 btadd -o - <"$file" && rm -f "$file"
11 elif [[ "$file" == http*://* ]]; then
12 rsc pc17 btadd -o "$file"
13 else
14 echo "rbtadd: $file: unreadable" >&2
15 fi
16done