Eliminar cadenas después del partido a EOL usando el comando SED
# 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
Stupid Salmon