mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-19 17:04:48 +00:00
6 lines
76 B
Bash
Executable file
6 lines
76 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -eu
|
|
trap 'exit 0' INT TERM
|
|
while :; do
|
|
sleep 1
|
|
done
|