mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-05 16:46:12 +00:00
13 lines
138 B
Bash
Executable File
13 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Running long script..."
|
|
|
|
for i in {1..20}; do
|
|
sleep 1
|
|
echo "running ${i} ..."
|
|
done
|
|
|
|
echo "Long script end"
|
|
|
|
exit 0
|