Shell get lines interval from a text file

 

cat file | head -n 16482 | tail -n 258

using sed:

sed -n '16224,16482p' in.sql > out.sql

using awk:

awk 'NR>=16224&&NR<=16482' in.sql > out.sql

Veeam RMAN plugin Windows network tuning

  In larger environments lots of connections are made by the Plug-In backups. It is recommended to tune the network settings of the invol...

Mais vistos