You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
minsh/.test.sh

13 lines
199 B

#!/bin/bash
trap 'exit 0' SIGINT SIGTERM
timeout --signal=INT --preserve-status 10 minsh
RET="$?";
echo $RET;
if [[ "$RET" = "130" ]]; then
echo "Caught 130, exiting gracefully"
exit 0
fi
exit 1