sed が特定の行に番号を付けながら行カウント作業を実行できるかどうかを知りたいのですが、ファイルがあるとします
  Some question 
         some answer
         another answer
  Another question
         another answer
         other answer
それを次のように変換するコマンドが必要です:望ましい出力
  1_ Some question 
         a_ some answer
         b_ another answer
  2_ Another question
         a_ another answer
         b_ other answer
それはsedで可能ですか?そうでない場合、解決策を bash スクリプト化せずにどのように行うことができますか?