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