List line numbers
nl /etc/autofs.conf
scroll 6 line numbers from 13th line of a file
tail -n+13 /etc/autofs.conf | head -n 6
Find particular type
find / -type f -name apache
Replace string globally
sed s/mysql/MySQL/g /etc/snort/snort.conf > snort2.conf
Replace once
sed s/mysql/MySQL/ snort.conf > snort2.conf
Replace only first 2 occurrence
sed s/mysql/MySQL/2 snort.conf > snort2.conf