Answers for "linux sed remove everything after character"

1

sed remove line after match

Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/,+1 d" file.txt #+1 defines number of lines
# to delete after matching line
Posted by: Guest on December-17-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 remove everything after character"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language