#!/bin/bash

s="Text
/* comment
here */
More text";
sed '/\/\*/,/\*\//d' <<< "$s"
