13 lines
267 B
Bash
Executable File
13 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
firmwarePath=$1
|
|
|
|
while true; do
|
|
read -n 1 char
|
|
if [[ $char == "a" ]]; then
|
|
./update-firmwares-and-configs.js "$firmwarePath" ansi
|
|
elif [[ $char == "i" ]]; then
|
|
./update-firmwares-and-configs.js "$firmwarePath" iso
|
|
fi
|
|
done
|