How should I write the command variable to get the expected behavior?
#!/bin/bash
function f ( )
{
echo "$2"
}
command="f --option=\"One Two Three\" --another_option=\"Four Five Six\""
$command
f --option="One Two Three" --another_option="Four Five Six"
First calling is wrong, second - right
$> ./test.sh
Two
--another_option=Four Five Six