mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-30 05:11:41 +08:00
11 lines
200 B
Bash
Executable File
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
|