whileループを使用してファイルを1行ずつ読み取るコードがあります。whileループ内には、特定の条件があります。条件に基づいて現在の行をスキップして次の行を読み取る方法はありますか?正確に言えば:
while read Line
do
//some sample conditions
a=$Line
if [ "a" == "b" ]
//i want to go to the next line from this point.
done < **inputfile**
どんな助けでもいただければ幸いです。