Skip to content
Advertisement

Bash error “command not found” running a command stored in var

Context:

I want to run a command stored in a variable in bash.

My bash file:

JavaScript

Problem:

When I run this bash file, the grunt sass command throws an error:

mybash.sh: line 25: $'E[4mRunning' : command not found

Whole return of my bash:

JavaScript

Investigation:

The commands echo "$(docker exec compose_custom-node_1 ls -l)" and echo "$($LS -l)" seem to work, but not the $($GRUNT sass).

If I run docker exec compose_custom-node_1 node_modules/grunt-cli/bin/grunt in a terminal, I see this output:

JavaScript

Question:

Do you have a clue for me? What I am doing wrong?

Advertisement

Answer

Better to use a function to store complex commands than a variable,

JavaScript

and call this as just

JavaScript

wherever needed in your script. See BashFAQ-050 which talks about this exact requirement on complex cases.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement