10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Specify the directory containing the applications
|
|
APP_DIR="../../roms"
|
|
|
|
# Loop through each file in the directory
|
|
for app in "$APP_DIR"/*; do
|
|
cargo run -- "$app" &
|
|
done
|