/usr/bin/r2e is in rss2email 1:2.71-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
set -e
dir=~/.rss2email
if [ "$1" = "-d" ]; then
if [ -z "$2" ]; then
echo "r2e: -d missing directory" >&2
exit 1
fi
dir="$2"
shift 2
fi
if [ ! -d "$dir" ]; then
mkdir -p "$dir"
fi
cd "$dir"
exec python /usr/share/rss2email/rss2email.py feeds.dat $*
|