私はファイルを持っていますtest.txt
class c1 {
___________ any text _____________
}
class c2 {
___________ any text _____________
}
class c3 {
___________ any text _____________
}
test.txt
行ごとにスキャンし、各行を正規表現と比較して、クラスのヘッダーを含むが機能しない行を取得するbashスクリプトを作成します:(
#!/bin/bash
while read line
do
if [[ "$line" =~ "class *\w+" ]]; then
echo $line
fi
done <test.txt
最終的な目標は、ファイル内の各クラスを分離します