I reviewed the multiple threads on this and am still having issues, here is the command I\'m trying to execute. Commands without the $() print the desired output t
$()
That is correct:
MODEL3=$(/usr/sbin/getSystemId | grep "Product Name" | awk '{print $4}')
But you can write the same without grep:
grep
MODEL3=$(/usr/sbin/getSystemId | awk '/Product Name/{print $4}')
Now you have the result in the MODEL3 variable and you can use it further as $MODEL3:
MODEL3
$MODEL3
echo "$MODEL3"