I would like to call the following bash command in MATLAB:
grep "Up to" ~/test_linux/vision1.1/log | awk '{print $7}'
I use system()
in MATLAB, but it turns out to have errors:
>> [status string]=system('grep "Up to" ~/test_linux/vision1.1/log | awk '{print $7}' ');
??? [status string]=system('grep "Up to" ~/test_linux/vision1.1/log | awk '{print $7}' ');
Error: Unbalanced or unexpected parenthesis or bracket.
Do I need to escape some special characters in the bash command as a string in MATLAB?