acmecert: Fix cryptography bugs.
[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
21e62b99 10 rsc nerv.dolda2000.com btadd - <"$file" && rm -f "$file"
0c0ef5c7 11 elif [[ "$file" == http*://* ]]; then
21e62b99 12 rsc nerv.dolda2000.com btadd "$file"
0c0ef5c7 13 else
14 echo "rbtadd: $file: unreadable" >&2
15 fi
16done