データ
C. Induction anesthesia, muscle relaxant, anxiolytics, 1st line sleeping disorder (but short time in market).
\part{Theoretical Questions}
Lorem
パスワード
cat \
10.6.2015.tex \
\
| sed 's#\part{Theoretical Questions}.*\n##'
> 10.6.2015_quizlet.tex
これはSTOUDにまったく同じデータを提供し、空です。2015年10月6日_quizlet.tex。問題はおそらくここにあるでしょう。
| sed 's#\part{Theoretical Questions}.*\n##'
私はテキストの前にあるものだけを含め、\part{Theoretical Questions}
その文の前にタイトルだけを含めたいと思います。これを行うより良い方法が必要です。
つまり、ゲームの前にヘッドのみを含める方法は何ですか?
答え1
sed -n 'p; /Theoretical/q'
正規表現が最初に一致するまで印刷してから終了します。