Suppose I have this line in a file name "temp.8639"
<!--Lab Accept Date-->Somedate
How do I run a sed command to replace this line with:
<!--Lab Accept Date-->Newdate
This is the command I used, but not worked:
cat temp.8639 | sed -e s/"<!--Lab Accept Date-->\(.*\)"/"<!--Lab Accept Date-->Newdate"/
Thanks!
<!--Lab Accept Date-->Somedate
How do I run a sed command to replace this line with:
<!--Lab Accept Date-->Newdate
This is the command I used, but not worked:
cat temp.8639 | sed -e s/"<!--Lab Accept Date-->\(.*\)"/"<!--Lab Accept Date-->Newdate"/
Thanks!