Add a "master" script
This commit is contained in:
parent
68cb981037
commit
156b2ff454
|
@ -0,0 +1,31 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Purpose {{{
|
||||
## Run all other save.game.* scripts.
|
||||
# }}}
|
||||
|
||||
# Vars {{{
|
||||
script_wd=$(dirname -- "${0}")
|
||||
|
||||
## List of scripts
|
||||
home_script="save.game.home"
|
||||
steam_script="save.game.steam"
|
||||
xdg_script="save.game.xdg"
|
||||
|
||||
# }}}
|
||||
|
||||
# For all scripts, try to run
|
||||
for script in "${home_script}" "${steam_script}" "${xdg_script}"; do
|
||||
|
||||
## If the script doesn't exist
|
||||
if [ ! -f "${script_wd}/${script}" ]; then
|
||||
printf '\e[1;35m%-6s\e[m\n' "Loop script − ${script} doesn't seems to exist. Abort."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
## Run the script
|
||||
sh "${script_wd}/${script}"
|
||||
|
||||
done
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue