I'm trying to use bash's SED command in OS X and failing.
I need to change this line #"phpunit/phpunit:3.7.*", to the same but without the # (so like this "phpunit/phpunit:3.7.*", in my file.
What is the best way to do that in sed?
I tried this: sed -i -e "s/#\"phpunit/phpunit:3.7.*\",/\"phpunit/phpunit:3.7.*\"," file.txt
but that didn't work :(