COMPANY_NAME=`cat file.txt | grep \"company_name\" | cut -d \'=\' -f 2`
outputs something like this
\"Abc Inc\";
cat file.txt | grep "company_name" | cut -d '=' -f 2 | cut -d ';' -f 1