Answers for "linux sed delete part of string"

0

linux sed remove string in file

sed -e s/deletethis//g -i *
Posted by: Guest on November-10-2020
0

delete strings after match to eol using sed command

# To explicitly delete everything that comes after ".com", just tweak your existing sed solution to replace ".com(anything)" with ".com":
sed 's/\.com.*/.com/' file.txt
Posted by: Guest on August-25-2020

Code answers related to "linux sed delete part of string"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language