In awk:
awk '$2 == "LINUX" { print $0 }' test.txt
See awk by Example for a good intro to awk.
In sed:
sed -n -e '/^[0-9][0-9]* LINUX/p' test.txt
See sed by Example for a good intro to sed.
In awk:
awk '$2 == "LINUX" { print $0 }' test.txt
See awk by Example for a good intro to awk.
In sed:
sed -n -e '/^[0-9][0-9]* LINUX/p' test.txt
See sed by Example for a good intro to sed.