I am trying to update several config files with web addresses
the config files are a generic file that all contain a line such as
"github" => "github_change",
my sed command is
sudo sed -i 's/github_change/"$github"/g' config.php
but this just produces
"github" => ""$github"",
proper output should be
"github" => "https://github.com",
Ive tried for awhile now on different quote combinations to no end