quote rom names with single quotes
Signed-off-by: Michel-FK <michel.stempin@funkey-project.com>
This commit is contained in:
parent
bfed99494e
commit
ff83118833
|
@ -60,11 +60,15 @@ save)
|
||||||
|
|
||||||
# Write quick load file args
|
# Write quick load file args
|
||||||
echo -n "" > "${INSTANT_PLAY_FILE}"
|
echo -n "" > "${INSTANT_PLAY_FILE}"
|
||||||
for arg in "$@"; do
|
while :
|
||||||
|
do
|
||||||
# Add quotes around all arguments
|
printf "'" >> "${INSTANT_PLAY_FILE}"
|
||||||
echo -n "'${arg}' " >> "${INSTANT_PLAY_FILE}"
|
printf %s "$1" | sed "s/'/'\\\\''/g" >> "${INSTANT_PLAY_FILE}"
|
||||||
|
shift
|
||||||
|
case $# in 0) break; esac
|
||||||
|
printf "' " >> "${INSTANT_PLAY_FILE}"
|
||||||
done
|
done
|
||||||
|
printf "'\n" >> "${INSTANT_PLAY_FILE}"
|
||||||
|
|
||||||
# Add the magic sauce to launch the process in background,
|
# Add the magic sauce to launch the process in background,
|
||||||
# record the PID into a file, wait for the process to
|
# record the PID into a file, wait for the process to
|
||||||
|
|
Loading…
Reference in New Issue