Je veux écrire du code comme ceci :
command="some command"
safeRunCommand $command
safeRunCommand() {
cmnd=$1
$($cmnd)
if [ $? != 0 ]; then
printf "Error when executing command: '$command'"
exit $ERROR_CODE
fi
}
Mais ce code ne fonctionne pas comme je le souhaite. Où j'ai fait une erreur ?