Re: Steve-parkers Bourne sh programming tutorial

From: Player (Architect_at_Matrix.com)
Date: 10/08/03


Date: Wed, 08 Oct 2003 02:52:48 +0100

On Wed, 08 Oct 2003 02:37:39 +0100, Player wrote:

> Path: news.theplanet.net!not-for-mail
> From: "Player" <Architect@Matrix.com>
> Newsgroups: comp.unix.shell
> Subject: Steve-parkers Bourne sh programming tutorial
> Date: Wed, 08 Oct 2003 02:37:39 +0100
> Lines: 64
> Message-ID: <pan.2003.10.08.01.37.39.468507@Matrix.com>
> NNTP-Posting-Host: 81.79.16.181
> X-Trace: newsg2.svr.pol.co.uk 1065576704 4558 81.79.16.181 (8 Oct 2003
> 01:31:44 GMT)
> NNTP-Posting-Date: 8 Oct 2003 01:31:44 GMT
> X-Complaints-To: abuse@theplanet.net
> User-Agent: Pan/0.13.4 (She had eyes like strange sins.)
> Xref: news.theplanet.net comp.unix.shell:132965
> MIME-Version: 1.0
> Content-Type: text/plain; charset=ISO-8859-1
> Content-Transfer-Encoding: 8bit
>
>
> Hi all :)
>
> At http://steve-parker.org/sh/sh.shtml there is a bourne shell
> programming tutorial by the name of, sh-0.7/sh.shtml that is as one
> would expect a tutorial for people who want to learn bash shell
> programming.
>
> Well I dl'd that tutorial as I am teaching myself linux and though bash
> programming along with perl would be very good knowledge to have up-stairs
> mingled in with the old grey matter :)
>
> Anyways in the Loops section of that tutorial, there is a section called
> While Loops and a rather small scripty showing the use of a while loop,
> the source follows below....
>
> #!/bin/sh
> INPUT_STRING=hello
> while [ "$INPUT_STRING" != "bye" ]
> do
> echo "Please type something in (bye to quit)"
> read INPUT_STRING
> echo "You typed: $INPUT_STRING"
> done
>
> .....well I created this little script in emacs and wrote the very exact
> same code into a script called while.sh.
> I did a 'chmod 755 while.sh' so as to make the script active as such, and
> expected as most would of, to get a script that would simple loop echo'ing
> the txt...
>
> You typed: <what i did type>
>
> ...untill I typed 'bye', were then it would halt the loop and the script
> would finish and stop.
> Thing is though I did not get what I expected, and I got this error
> instead....
>
> ./while.sh: line 7: unexpected EOF while looking for matching `"'
> ./while.sh: line 9: syntax error: unexpected end of file
>
> ...so could someone explain to me just whats going on? or were it is going
> wrong? lol.
> I assure everyone that I have the exact same code as is in the tutorial,
> in my script, because thinking I was blind, I deleted what I had typed and
> simply copy pasted the source out of the tutorial and into my script,
> thinking I was blind and simply couldn't see the mistake.
>
> I have noticed quite a few spelling mistakes and typos within the
> tutorial, and as a begginer to linux and shell coding, I am thinking that
> there might be an error in the source somewere, were as a begginer I
> wouldn't know about it :)
>
> Anyways can someone please help me out a little, because I very much stuck
> lol.
> REgards PLayer

Well what-ever it was, it now seems to have corected it's self and is now
working fine.
Oh well lol nevermind people, ignore the post lol, pass it off as the mad
ravings of a begginer lol.
:)
Regards Player

-- 
***********************************
Hale to the new GODS of Earth.....
Long live the Machines
***********************************


Relevant Pages

  • Re: Problem with a script
    ... I don't mean to offend you or discourage you from working with PHP, ... Reworking your huge script into something concise, ... that I have no understanding of loops is completely asinine. ... throw that in while I am on the subject of programming. ...
    (comp.lang.php)
  • Re: Problem with a script
    ... that I have no understanding of loops is completely asinine. ... loops throughout the script. ... business with a history of hiring low knowledge employees, ... throw that in while I am on the subject of programming. ...
    (comp.lang.php)
  • Re: steve-parkers bourne sh coding tutorial
    ... > Anyways in the Loops section of that tutorial, ... > same code into a script called while.sh. ... > totaly relying on the tutorials info being true to it's word. ... > lol. ...
    (comp.os.linux.misc)
  • Re: steve parkers bourne sh coding tutorial
    ... > Anyways in the Loops section of that tutorial, ... > same code into a script called while.sh. ... > totaly relying on the tutorials info being true to it's word. ... > lol. ...
    (alt.os.linux)
  • Re: GoTo in Java
    ... smaller, decomposed, functionality. ... maintaining script, ... > It used a component programming model and provided a visual development ... > package graphs as macros for use in other graphs. ...
    (comp.lang.cobol)

Loading