6 lines
139 B
Plaintext
6 lines
139 B
Plaintext
|
#!/bin/bash
|
||
|
# Copyright (c) 2017 Intel Corporation
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
while kill -0 $1 2> /dev/null; do sleep 1; done;
|