#!/bin/bash
# tute7

clear
echo -e "#################################### 07 ######################################\n"
echo -e "Lets say we don't want to list everything in that file, we just" 
echo -e "want to list the station names.\n"
sleep 5
echo -e "We could use \"grep\" to print the station names to standard out\n"
sleep 5
echo -e "Grep searches one or more files for lines that match a regular "
echo -e "expression.\n\n"
sleep 5
echo -e "This is the grep command that will just list the stations:\n\n"
echo -e "\tgrep \"#Station\" stream-dvb.conf\n\n"
sleep 4
grep "#Station" stream-dvb.conf