DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Quale è Il Comando Più Semplice Per Leggere La 3 Riga Di Un File?
// man sed => sed -n n,mp file
Scrive tutte le righe comprese tra n e m.
Segnatamente:
sed -n 3,3p file





