#!/bin/bash
# tute12
clear
echo -e "#################################### 12 ######################################\n"
echo -e "I don't need everything in that file. There are stations listed there that"
echo -e "stream music and  stations that are redundant such as the commercial stations"
echo -e "that list thre channels but really only use one at the moment.\n"
sleep 10
echo -e "I have commented out the lines that I am not interested in using and can use"
echo -e "sed to show only the un-commented lines.\n"
sleep 5
echo -e "The command would be:\n\n"
echo -e "\tsed /#/d channels.conf\n\n"
sleep 2
sed /#/d channels.conf
sleep 10



