mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2026-02-25 18:51:26 +01:00
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export HOME=/tmp/funkey
|
|
mkdir -p ${HOME}
|
|
cd ${HOME}
|
|
|
|
# Launch the process in background, record the PID into a file, wait
|
|
# for the process to terminate and erase the recorded PID
|
|
psnes "$1"&
|
|
record_pid $!
|
|
wait $!
|
|
erase_pid
|