Le seguenti 14 parole non sono state trovate nel dizionario di 1275 termini (includendo 1275 LocalSpellingWords) e sono evidenziate qui sotto:
echo   hello   lines   multiple   n2   n3   one   sed   substitute   Substitute   two   using   with   word  

Nascondi questo messaggio
Italiano English
Modifica History Actions

SedSubstituteMultipleLines

Substitute multiple lines using sed

echo -e "1\n2\n3"

substitute lines one and two with the word "hello"

echo -e "1\n2\n3" | sed -e '/1/,/2/c hello'