1

ファイルの各行の後に余分な行を追加する

約 1000 行のファイルの次のタスクについて助けが必要です。

入力

    ./create.pl     1eaj.out
    ./create.pl     1ezg.out
    ./create.pl     1f41.out
    ...

出力

    ./create.pl     1eaj.out
    mv complex.* 1eaj
    ./create.pl     1ezg.out
    mv complex.* 1ezg
    ./create.pl     1f41.out
    mv complex.* 1f41
    ...

次のコマンドは、新しい行と最初の部分を追加して、以下のような出力を作成できることを知っています。

    awk ' {print;} NR % 1 == 0 { print "mv complex.*  "; }'

    ./create.pl     1eaj.out
    mv complex.* 
    ./create.pl     1ezg.out
    mv complex.* 
    ./create.pl     1f41.out
    mv complex.* 
    ...

残りはどうする?よろしくお願いします。

4

3 に答える 3