sed '/\*\*;\*\*;\*\*;\?/d' file
-
\*\*;\*\*;\*\*;\?
: corresponde a uma string**;**;**
, seguido opcionalmente por um caractere;
; -
d
: apaga a linha.
Para editar o arquivo no lugar:
sed -i '/\*\*;\*\*;\*\*;\?/d' file
% cat file :(
**;**;**;
*(Eng_Sen:This is an apple)*;*(WordID:1 2 3 4)*;*(message:)*;
**;**;**
% sed '/\*\*;\*\*;\*\*;\?/d' file
*(Eng_Sen:This is an apple)*;*(WordID:1 2 3 4)*;*(message:)*;
%