4 lines
83 B
Bash
4 lines
83 B
Bash
#!/bin/bash
|
|
trap "echo 'Stopping...'; exit 0" SIGTERM
|
|
while true; do sleep 1; done
|