mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-05 16:46:12 +00:00
11 lines
130 B
Bash
Executable File
11 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
echo "Starting background job..."
|
|
|
|
nohup ./scripts/long.sh >/tmp/long.log 2>&1 &
|
|
|
|
echo "Background job started."
|
|
|
|
|