in reply to Unable to get a tcshell command line working in PERL v5 system command

How are you quoting the command inside system()? If you are doing:
system(cleartool blah blah blah...);
Then the problem is that the command inside () must be quoted, for example:
system(q{cleartool blah blah blah...});