Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
Does a csh or a C shell script have a for loop or does it only have a foreach loop?
for
foreach
Can I do the following?
for($i=11; $i<=24; $i++) { echo $i }
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
Add a comment
Required, but never shown
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.
Explore related questions
See similar questions with these tags.