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

只愿长相守 提交于 2019-11-28 06:12:22

问题


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?


回答1:


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?".



来源:https://stackoverflow.com/questions/16731866/ct-lsco-a-s-cview-xargs-ct-ci-nc-clearcase-multiple-files-check-in

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!