Commands using grep or sed utility

Commands using grep or sed utility

commands using grep or sed utility

grep ‘^The’ F1

grep -c ‘^$’ F1

grep -v ‘Unix’ F1

sed ‘s/unix/linux/g’ F1

sed -i ‘s/unix/linux/g’ F1

sed ‘s/unix/linux/g’ F1

grep -E ‘VB\.net|Asp\.net’ F1

grep -e ‘VB\.net’ -e ‘Asp\.net’ F1

grep -x ‘.\{4\}’ F1

sed ‘3,5d’ F1

sed ‘G’ F1