#!/bin/bash
# tute17

clear
echo -e "#################################### 17 ######################################\n"
echo -e "This tour was intended to get you a little more familiar with some"
echo -e "usage and constructs in that you might find in Bash scripting.\n" 
sleep 5
echo -e "There is no way I remember all this stuff but every time I do another "
echo -e "script I learn a little more and remember a little more.\n"
sleep 5
echo -e "The nice thing is that if there is nothing off the shelf that will do "
echo -e "do what I need done and if the job is repeated frequently, than scripting"
echo -e "might just get me out of jail or make life a bit more enjoyable.\n"
sleep 7
echo -e "Plus the more scripting I do the more snippets I accumulate that can be"
echo -e "used or modified for use in other scripts.\n"
sleep 5
echo -e "Syntax and regular expressions used with stream editors (regexp) "
echo -e "are still no joy but I'm learning.\n"
sleep 5
echo -e "Remember, there's a heap of how-tos and whatnot on the net but for me the"
echo -e "only way to learn any of this stuff was to read other peoples scripts and"
echo -e "have a play at writing my own no matter how trivial or silly they might be."
sleep 10