0

Does a csh or a C shell script have a for loop or does it only have a foreach loop?

Can I do the following?

for($i=11; $i<=24; $i++)
{
     echo $i
}

1 Answer 1

2

No, there is no for-only loop.

However, to obtain similar results, you can use a while loop:

 #!/bin/csh
 set j = 11
 while ( $j <= 24 )
   echo $j
   @ j++
 end
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.