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
Variable assignments must not have spaces between the variable name, the assignment operator, and the value. Your current line says:
MODEL3= $(/usr/sbin/getSystemId | grep "Product Name" | awk '{print $4}')
This actually means "run the following expression with an empty environment variable, where MODEL3 is set but empty."
What you want is an actual assignment:
MODEL3=$(/usr/sbin/getSystemId | grep "Product Name" | awk '{print $4}')