recortar e colar no ed

0

Alguém pode me dizer como cortamos e colamos em ed , por exemplo, para a seguinte pergunta?

Write a script for ed which moves all lines starting with character # to the end of the input file?

    
por Somojel 13.04.2018 / 21:10

1 resposta

4

Esta questão é formulada como uma questão de lição de casa. Você aprenderá muito pouco com a resposta dada a você.

g/^#/m$ Apply the move-to-end command (m$) to all lines matching /^#/. All that is missing is to write the result back to the original file. For an extra challenge, combine this with your last question and come up with a way of commenting out line 10 through to 20 and move them to the end of the file, not touching other commented out lines.

    
por 13.04.2018 / 21:26

Tags