Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
454 views
in Technique[技术] by (71.8m points)

ct lsco -a -s -cview | xargs ct ci -nc (Clearcase multiple files check-in)

I get error while running this command on linux.

ct lsco -a -s -cview | xargs ct ci -nc

(ct is for cleartool)

xargs: ct: No such file or directory

How can I avoid this error?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Don't use the alias 'ct' with xargs.

Use cleartool.

As explained in "xargs doesn't recognize bash aliases":

This doesn't work because xargs expects to be able to exec the program given as its parameter.

Since ct in your case is just a bash alias or function there's no program to execute.

More details in "How can I use aliased commands with xargs?".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...