zephyr/scripts/waitpid

7 lines
161 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
trap "kill $1" SIGINT
while kill -0 $1 2> /dev/null; do sleep 1; done;