The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-08-2008
big123456 big123456 is offline
Registered User
  
 

Join Date: May 2005
Posts: 200
while

Hi,
I want to display a menu then I wrote :

Code:
while [1]
do
echo "                         Enter your choice"
done

But I receive :

Code:
myscript.sh[7]: [1]:  not found

Any idea ?
Thank you.
  #2 (permalink)  
Old 08-08-2008
Tytalus's Avatar
Tytalus Tytalus is online now Forum Advisor  
echo {1..9}^2\;|bc
  
 

Join Date: Jun 2003
Location: Scotland
Posts: 431
drop the brackets...
i.e.


Code:
while 1

not


Code:
while [1]

  #3 (permalink)  
Old 08-08-2008
orailker orailker is offline
Registered User
  
 

Join Date: Aug 2008
Posts: 3
while [ 1 ];
do
echo " Enter your choice"
done

Pay attention to semicolon and spaces between the brackets
  #4 (permalink)  
Old 08-08-2008
big123456 big123456 is offline
Registered User
  
 

Join Date: May 2005
Posts: 200
Thank you.
But

Code:
while [ 1 ];
select menu_list in "choix 1"  "choix 2"  "fin"
do
	case $menu_list in
		"choix 1").... ;;
    		"choix 2")... ;;
		"fin") exit 0 ;;
		"") echo "$REPLY invalide option  "
	esac
done
done

And I get :

Code:
.sh[7]: syntax error at line 7 : `while' unmatched

  #5 (permalink)  
Old 08-08-2008
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,807

Code:
while [ 1 ]
do
     

done

"do" right after "while"

If somebody else has to maintain your code consider a more usual approach to
free while loops


Code:
while :
do

done 

# or
while true
do

done

  #6 (permalink)  
Old 08-08-2008
big123456 big123456 is offline
Registered User
  
 

Join Date: May 2005
Posts: 200
thanks to all.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 05:52 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0