ADD adv example for cont. command

This commit is contained in:
Caffeine Fueled 2025-09-21 21:03:10 +02:00
parent b47ea6fe01
commit b408f2196c
Signed by: cf7
GPG key ID: CA295D643074C68C

10
main.py
View file

@ -201,13 +201,21 @@ curl -s https://{DOMAIN}/PASTE_THE_ID \
Adv Examples
Multiple Commands
Multiple commands:
{{ cmd() {{ printf "\\n# %s\\n" "$*"; "$@"; }}; \\
cmd hostname; \\
cmd ip -br a; \\
}} 2>&1 | curl -X POST https://{DOMAIN} --data-binary @-
Continous command:
(timeout --signal=INT --kill-after=5s 10s \\
ping google.com; \\
echo "--- Terminated ---") | \\
curl -X POST --data-binary @- https://linedump.com
Further Information