Created
September 26, 2023 20:48
-
-
Save adililhan/be7a8204c208a90756da31784ccf9168 to your computer and use it in GitHub Desktop.
Revisions
-
adililhan created this gist
Sep 26, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #!/bin/bash trap control_t SIGTERM function control_t() { echo "SIGTERM detected" } for i in `seq 1 86400`; do sleep 1 date done