csh problem with while


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting csh problem with while
# 1  
Old 12-24-2007
csh problem with while

Hello this my first post, so i hope you help me

Code:
	
echo -n "Choose which square you want to hit of PL2 grid "
	set pl2_square = $<
	set i = 1
	while ($i <= 6)
		if ($pl2_square == $pl2_ships[$i]) then
			$pl2_ships[$i] = x
			echo ""
			echo ""
			echo "PL1 has hitted a square of PL2"
			echo "PL2 ships are $pl2_ships"
			echo ""
			echo ""
		else
			echo ""
			echo ""
			echo "PL1 has hitted NO square of PL2"
			echo ""
			echo ""
		endif
		@ i ++
	end

I want this code to iterate on the elements of pl2_ships but it seems to iterate only on the first element not the remaining five. I want to know what is my mistake.

OUT OF BOUNDS QUESTION: Who is this forum belong to?
because in one of the posts I saw my doctor name "dr.sallay"
# 2  
Old 12-25-2007
please let me know what is the mistake
# 3  
Old 12-25-2007
Hi.

I suggest you remove the first "$" from:
Code:
$pl2_ships[$i] = x

so that you have:
Code:
pl2_ships[$i] = x

Best wishes ... cheers, drl

---

Standard advice: avoid the csh family for scripting; use Bourne shell family instead ( sh, ksh, bash, zsh ).
# 4  
Old 12-25-2007
drl, it seems not work
thank you for the advice but it's an assignment and i'm forced to use csh
# 5  
Old 12-25-2007
Hi.
Quote:
Originally Posted by amaj1407
drl, it seems not work ...
If you are saying that the correction does not solve your problem, then saying "not work" is not enough information for us to help you.

Please post the shortest complete example that does not work and post the output plus complete error messages and the output that you think it should produce ... cheers, drl
# 6  
Old 12-25-2007
now it woks I replaced $ in $pl2_ships[$i] = x to "set"
The final statment is:

set pl2_ships[$i] = x

Thank you drl for your interacting with my problem
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk execution problem in csh

This has no error awk '($8==150) && ($4>=11.001 && $4 <= 12) && ($5>=91.001 && $5<=92){print}' OFS="\t" file following are unable to run in csh this is giving error awk: line 1: syntax error at or near not even working in terminal awk '($'$gr'=='$grn') && ($'$ll'>='$Y' && $'$ll' <= '$Ym')... (1 Reply)
Discussion started by: nex_asp
1 Replies

2. Shell Programming and Scripting

Csh variable calling problem

First post on here. So I use csh shells for my research (physics... not a CS person). I am trying to rerun the same scripts, but there are ~10 files that have similar variables that I have to change for each different configuration, so I would like one central file for the variables I change that... (3 Replies)
Discussion started by: sabrepride
3 Replies

3. UNIX for Dummies Questions & Answers

Problem with simple csh scripting

I found my answer... (2 Replies)
Discussion started by: sjung9442
2 Replies

4. Shell Programming and Scripting

CSH missing - problem

Hi all, i need help with this code set login = (`cut -d ":" -f1 /etc/passwd.2001`) set group = (`cut -d ":" -f4 /etc/passwd.2001`) set name = (`cut -d ":" -f5 /etc/passwd.2001 | cut -d ":" -f1`) set i = 1 while ($#login > 0) set pom = `last $login | wc -l` if ($pom < 3) then... (1 Reply)
Discussion started by: Casualty
1 Replies

5. Shell Programming and Scripting

Execution problem with csh script

Hi All, I have a small issue with my csh script which I am using to FTP a file. What I know is...there are two commands to execute script.. 'sh <file>' & '\<file>'. When I execute my script with command 'sh <file>', it gives me syntax error while it runs successfully with command '\<file>'. I am... (3 Replies)
Discussion started by: ndd
3 Replies

6. Shell Programming and Scripting

Problem with endsw in csh

I am getting an error and can't figure out the problem breaksw: endsw not found. Problem has been solved now (0 Replies)
Discussion started by: kristinu
0 Replies

7. Shell Programming and Scripting

${name${i}} problem in CSH

Hello all, I tried the following commands in the cshell, but failed. ~Cshell %set i=2 ~Cshell %set fields${i}= ( ad dd dd ) ~Cshell %echo $fields${i} fields: Undefined variable. ~Cshell %echo ${fields${i}} Missing }. And i can see the $fields2 is already set as a local variable... (0 Replies)
Discussion started by: tpltp
0 Replies

8. Shell Programming and Scripting

Problem with csh script

Hi All, I have the following script. #!/bin/csh # # createDATfile.sh # cd /export/home/fastserv/bin source /export/home/fastserv/bin/dbenv.sh echo `date` >> /export/home/fastserv/bin/log.txt echo "%INF% Starting send of current FASTSERVICE batch" >>... (4 Replies)
Discussion started by: rahulrathod
4 Replies

9. Shell Programming and Scripting

Problem accessing csh ?? (Newbie)

Hi All, Just recently started using a program in Unix for a client. I was sent a script to use but for some reason it's not working. The person who created the script first suggested I may need to edit the first line of the script so that it has the correct path for the csh file: #!/bin/csh -f... (3 Replies)
Discussion started by: gmalt
3 Replies

10. Shell Programming and Scripting

cron job problem with csh script

I've written a csh shell script to number each line of a file. Firstly, the program count the number of the file and create a file with number at the front. Then, combine the file together. when i call the program manually, it works.However, when i set it in the cronjob, the output always leaves... (3 Replies)
Discussion started by: fung_donald
3 Replies
Login or Register to Ask a Question