Am trying to pass special character string to sed command but no success i tried backslash but no success
sed -i 's/old/new/g' {} + # working
sed -i 's/$_REQUEST['old']/$_REQUEST['new']/g' {} + # not working
sed -i 's/$_REQUEST[\'old\']/$_REQUEST[\'new\']/g' {} + # not working
sed -i "s/$_REQUEST['old']/$_REQUEST['new']/g" {} + # NIGHTMARE ! not working