morenoaebi
Technical User
Why following if-then-else statement inj my csh doesen't work?
if(-e *.inf||-e *.gbr) then
rm *.inf *.gbr
endif
The following works:
if(-e a.inf||b.gbr) then
rm *.inf *.gbr
endif
thanx to all
if(-e *.inf||-e *.gbr) then
rm *.inf *.gbr
endif
The following works:
if(-e a.inf||b.gbr) then
rm *.inf *.gbr
endif
thanx to all