Answers for "delete part of string with sed"

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

$ cat file | awk -F '\\.com' '{print $1".com"}'
google.com
unix.stackexchange.com
isuckatunix.com
Posted by: Guest on August-25-2020

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language