webhookd/scripts/long.sh

13 lines
138 B
Bash
Raw Permalink Normal View History

2022-05-26 07:05:49 +00:00
#!/bin/bash
echo "Running long script..."
for i in {1..20}; do
sleep 1
echo "running ${i} ..."
done
echo "Long script end"
exit 0