op-packages/telegrambot/root/usr/lib/telegrambot/plugins/plugins.sh
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

11 lines
200 B
Bash
Executable File

#!/bin/sh
IFS=
echo -ne "Aviable commands are:\n"
cd /usr/lib/telegrambot/plugins
for p in $(find . -type f -print -o -name . -o -prune |sed -e 's/.sh//g' -e 's/\.//g'); do
echo -ne "*$p*\n"
done