mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2026-01-03 10:19:02 +01:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Launch the process in background, record the PID into a file, wait
|
|
# for the process to terminate and erase the recorded PID
|
|
fceux "$1"&
|
|
record_pid $!
|
|
wait $!
|
|
erase_pid
|