S <umusus@anet.ne.jp> writes:
 :perl -e '$_ = join("",<STDIN>); $_ =~ s/\*\s*\*//gs; print $_' < test.txt

perl -pe 'undef $/; s/\*\s*\*//g;'

#行中に * * が無いことが前提ですよね?          R.田中二郎