sed delete rest of line after match code example
Example 1: bash remove everything after character x
echo "Hello: world" | cut -f1 -d":"
Example 2: delete strings after match to eol using sed command
$ cat file | awk -F '\\.com' '{print $1".com"}'
google.com
unix.stackexchange.com
isuckatunix.com
Example 3: delete strings after match to eol using sed command
# You can use awk's field separator (-F) following way:
$ cat file
google.com/funny
unix.stackexchange.com/questions
isuckatunix.com/ireallydo