| ||||||
| 5/17 |
| 2004/7/2 [Uncategorized] UID:31140 Activity:nil |
7/2 Badly placed ()'s.
It's from an:
#!/bin/csh
if ($arg == 'string') then
cp file1 file2
elseif ($arg == 'another_string') then
cp file3 file4
else
other stuff
endif
Why is it badly placed parens? |