The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
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