mirror of
https://gitee.com/clygintang/Dockfile-Coreseek.git
synced 2025-07-21 00:00:15 +08:00
13 lines
149 B
Bash
Executable File
13 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tmpfile=
|
|
trap 'rm -fr $tmpfile' 1 2 3 15
|
|
|
|
tmpfile=test-fpending.t
|
|
|
|
./test-fpending${EXEEXT} > $tmpfile || exit 1
|
|
|
|
rm -fr $tmpfile
|
|
|
|
exit 0
|