Sponsored Content
Top Forums Shell Programming and Scripting Syntax error: Bad for loop variable Post 302583083 by clgz2002 on Monday 19th of December 2011 01:57:22 PM
Old 12-19-2011
I removed the quote but i'm still having the same error.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

syntax error in while loop

Hi, I have the following script (compile_mercury) and I get this error: I have no idea why...and I have written this script completely in linux (bash) and not in windows. **************** ./compile_mercury: line 136: syntax error near unexpected token `done' ./compile_mercury: line 136:... (1 Reply)
Discussion started by: habzone2007
1 Replies

2. Shell Programming and Scripting

Syntax error on variable assignment

Hello all, I have "inherited" a Korn shell script I'm supposed to maintain, and running a "sh -n" on it, I got this syntax error: script.sh: syntax error at line 63: `OB_DEVICE=$' unexpected The line in cause is the first occurence of the usage of perl one-liners. The whole line: ... (2 Replies)
Discussion started by: AdrianM
2 Replies

3. Shell Programming and Scripting

for loop not working - syntax error at line 6: `end of file' unexpected

I have a file called test.dat which contains a b I have written a shell script called test.sh for i in `cat test.dat` do echo $i done When i run this script using sh test.sh I get this message - test.sh: syntax error at line 6: `end of file' unexpected What is the... (3 Replies)
Discussion started by: debojyoty
3 Replies

4. Shell Programming and Scripting

Syntax error: Bad for loop variable

Hi Can any one help, I'm trying to run a script that beeps out the ip address from the PC internal speaker with the following script. It keeps throwing the error "Syntax error: Bad for loop variable" on line 16. I know its picking up the IP ADDRESS correctly. Any ideas on whats wrong. I'm... (3 Replies)
Discussion started by: dman
3 Replies

5. Shell Programming and Scripting

Bash (Ubuntu server): Syntax error: "|" unexpected in While-loop

Hello forum, I hope my problem is easy to solve for someone in here! My main task is to copy a large amount of imap-accounts from one server to another. There is a tool (Perl) called imapsync which does the job exellent. Unfortunately I'm only able to run it on one account at a time. After... (3 Replies)
Discussion started by: primaxx
3 Replies

6. Shell Programming and Scripting

IF loop syntax error

I am trying to run a menu option though IF loops. I keep getting errors not allowed the menu to be processed correctly. Currently it will accept the first 2 statements but then crash on the 3rd. The 2nd and 3rd have the same syntax, so I do not understand why it breaks. #!/bin/bash while... (4 Replies)
Discussion started by: Ironguru
4 Replies

7. UNIX for Dummies Questions & Answers

[Solved] Syntax error for awk in a loop

can some one please tell me what is the problem with my syntax:confused: I have 100 files in one folder 1. want to read each of the line by line 2. calculate their number of the words between the first word and the last word of each line 3. create file for each file with number of words... (8 Replies)
Discussion started by: A-V
8 Replies

8. Shell Programming and Scripting

Variable syntax error in $?

hi all , i just tried to take the status of previous command inside the script using echo $?. It throws me a variable syntax error , but when i use echo $? as an individual command it works perfectly . can anyone Please tell me why am getting a variable syntax error when i use echo $?... (7 Replies)
Discussion started by: Rahul619
7 Replies

9. UNIX for Dummies Questions & Answers

Syntax error in for loop

I am using simple for loop, but getting syntax error when I run the code code #!/bin/ksh pls enter number read n for(i=1; i<=n; i++) do echo $i done syntax error + pls enter number + read n (5 Replies)
Discussion started by: stew
5 Replies

10. Shell Programming and Scripting

Bash function using variable in it syntax error

The below bash function uses multiple variables CODING, SAMPLE, SURVEY, andvariant in it. The user selects the cap function and details are displayed on the screen using the $SURVEY variable, the directory is changed to $SAMPLE and the samples.txt is opened so the user can select the sample to... (6 Replies)
Discussion started by: cmccabe
6 Replies
curses(3x)																curses(3x)

Name
       curses - screen functions with optimal cursor motion

Syntax
       cc [ flags ] files -lcurses -ltermcap [ libraries ]

Description
       These  routines give the user a method of updating screens with reasonable optimization.  They keep an image of the current screen, and the
       user sets up an image of a new one.  Then the subroutine tells the routines to make the current screen look like the new one.  To  initial-
       ize  the  routines,  the  routine must be called before any of the other routines that deal with windows and screens are used.  The routine
       should be called before exiting.

Functions
       addch(ch)		     add a character to stdscr
       addstr(str)		     add a string to stdscr
       box(win,vert,hor)	     draw a box around a window
       clear()			     clear stdscr
       clearok(scr,boolf)	     set clear flag for scr
       clrtobot()		     clear to bottom on stdscr
       clrtoeol()		     clear to end of line on stdscr
       crmode() 		     set cbreak mode
       delch()			     delete a character
       deleteln()		     delete a line
       delwin(win)		     delete win
       echo()			     set echo mode
       endwin() 		     end window modes
       erase()			     erase stdscr
       getch()			     get a char through stdscr
       getcap(name)		     get terminal capability name
       getstr(str)		     get a string through stdscr
       gettmode()		     get tty modes
       getyx(win,y,x)		     get (y,x) co-ordinates
       inch()			     get char at current (y,x) co-ordinates
       initscr()		     initialize screens
       insch(c) 		     insert a char
       insertln()		     insert a line
       leaveok(win,boolf)	     set leave flag for win
       longname(termbuf,name)	     get long name from termbuf
       move(y,x)		     move to (y,x) on stdscr
       mvcur(lasty,lastx,newy,newx)  actually move cursor
       newwin(lines,cols,begin_y,begin_x) create a new window
       nl()			     set newline mapping
       nocrmode()		     unset cbreak mode
       noecho() 		     unset echo mode
       nonl()			     unset newline mapping
       noraw()			     unset raw mode
       overlay(win1,win2)	     overlay win1 on win2
       overwrite(win1,win2)	     overwrite win1 on top of win2
       printw(fmt,arg1,arg2,...)     printf on stdscr
       raw()			     set raw mode
       refresh()		     make current screen look like stdscr
       resetty()		     reset tty flags to stored value
       savetty()		     stored current tty flags
       scanw(fmt,arg1,arg2,...)      scanf through stdscr
       scroll(win)		     scroll win one line
       scrollok(win,boolf)	     set scroll flag
       setterm(name)		     set term variables for name
       standend()		     end standout mode
       standout()		     start standout mode
       subwin(win,lines,cols,begin_y,begin_x) create a subwindow
       touchwin(win)		     "change" all of win
       unctrl(ch)		     printable version of ch
       waddch(win,ch)		     add char to win
       waddstr(win,str) 	     add string to win
       wclear(win)		     clear win
       wclrtobot(win)		     clear to bottom of win
       wclrtoeol(win)		     clear to end of line on win
       wdelch(win,c)		     delete char from win
       wdeleteln(win)		     delete line from win
       werase(win)		     erase win
       wgetch(win)		     get a char through win
       wgetstr(win,str) 	     get a string through win
       winch(win)		     get char at current (y,x) in win
       winsch(win,c)		     insert char into win
       winsertln(win)		     insert line into win
       wmove(win,y,x)		     set current (y,x) co-ordinates on win
       wprintw(win,fmt,arg1,arg2,...) printf on win
       wrefresh(win)		     make screen look like win
       wscanw(win,fmt,arg1,arg2,...) scanf through win
       wstandend(win)		     end standout mode on win
       wstandout(win)		     start standout mode on win

See Also
       ioctl(2), getenv(3), termcap(3x), tty(4), termcap(5)
       Screen Updating and Cursor Movement Optimization: A Library Package, ULTRIX Supplementary Documents Vol. II:Programmer

																	curses(3x)
All times are GMT -4. The time now is 08:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy