10 lines
166 B
Bash
10 lines
166 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
|
||
|
#
|
||
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
|
||
|
echo $$ > pid.txt
|
||
|
sleep 1s
|
||
|
exit 0
|