The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

17 行
278 B

#! /bin/sh
base=`dirname "$0"`
command="$1"
robo="$base/vendor-bin/robo/vendor/bin/robo"
if [ -z "$ARSSE_PHP" ]; then
php="php"
else
php="$ARSSE_PHP"
fi
if [ $# -eq 0 ]; then
"$php" "$robo"
else
shift
ulimit -n 2048
"$php" "$robo" "$command" -- "$@"
fi