mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
12 lines
144 B
Bash
Executable File
12 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/init_back &
|
|
|
|
/init_front &
|
|
|
|
# Wait for any process to exit
|
|
wait -n
|
|
|
|
# Exit with status of process that exited first
|
|
exit $?
|