| delorie.com/archives/browse.cgi | search |
| X-Spam-Check-By: | sourceware.org |
| To: | cygwin AT cygwin DOT com |
| From: | Doug <dmly DOT usa AT gmail DOT com> |
| Subject: | Re: CASE error in script file |
| Date: | Wed, 8 Nov 2006 22:14:52 +0000 (UTC) |
| Lines: | 34 |
| Message-ID: | <loom.20061108T231409-977@post.gmane.org> |
| References: | <loom DOT 20061108T225533-24 AT post DOT gmane DOT org> <eitkmk$d9b$1 AT sea DOT gmane DOT org> |
| Mime-Version: | 1.0 |
| User-Agent: | Loom/3.14 (http://gmane.org/) |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
Shankar Unni <shankarunni <at> netscape.net> writes:
>
> Doug wrote:
>
> > case $1 in
>
> If $1 is undefined (i.e. you pass in no arguments), this line becomes
>
> case in
>
> which is incorrect syntax, of course. Answer: quote the "$1".
>
>
I did put the "$1" in and it still gives me the same error
case "$1" in
"1")
echo '1'
;;
2)
echo '2'
;;
*)
echo 'Dunno'
exit 1;;
esac
'/test.sh: line 1: syntax error near unexpected token `in
'/test.sh: line 1: `case "$1" in
Thanks
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |