sed print until first match code example
Example: sed until first match
sed '/[match]/q' file.txt
#Include q option at the end to grep untilmatch only
sed '/[match]/q' file.txt
#Include q option at the end to grep untilmatch only