在linux上运行此命令时出错。
ct lsco -a -s -cview | xargs ct ci -nc
(ct
适用于cleartool
)
xargs: ct: No such file or directory
如何避免此错误?
答案 0 :(得分:2)
请勿将别名“ct
”与xargs
一起使用。
使用cleartool
。
如“xargs
doesn't recognize bash aliases”中所述:
这不起作用,因为
xargs
期望能够exec
作为参数给出的程序。由于你的
ct
只是一个bash别名或函数,所以没有程序可以执行。
“How can I use aliased commands with xargs
?”中的更多详细信息。