Regex with sed

hi
i would like to say "DATABASENAME=" to "TABLESNAME="

remove "," and press enter myconfig file
thanks

sed 's/DATABASENAME=/TABLESNAME=/; s/,//g; ' myconfig_file

; really don't know how to "press enter" with sed .

1 Like