Existe-t-il des outils / astuces pour développer des variables afin de rendre le code bash plus facile à lire?
Par exemple, il convertirait les éléments suivants:
DIR=/var/tmp
FILE=${DIR}/file
SCRIPT_ROOT=/opt/root
TOOL=${SCRIPT_ROOT}/tool.sh
${TOOL} ${FILE}
à:
DIR=/var/tmp
FILE=/var/tmp/file
SCRIPT_ROOT=/opt/root
TOOL=/opt/root/tool.sh
/opt/root/tool.sh /var/tmp/file
- Je convertis le code BASH en Python et la lecture de la syntaxe BASH est très fastidieuse.