在脚本中设置 CLASSPATH
我有一个脚本,我想在其中设置 CLASSPATH 作为
<代码>/dun/d2ddm0/bea/weblogic91/server/lib/jxl.jar:/dun/d2ddm0/bea/user_projects/domains/RMGemDev3023/server/lib/weblogic.jar:/dun/d2ddm0/bea /user_projects/domains/RMGemDev3023/server/lib/parser.jar:/dun/d2ddm0/bea/user_projects/domains/RMGemDev3023/server/lib/jconn2.jar:.
当我在 shell 脚本中声明然后进行导出时CLASSPATH
。我的脚本无法正常工作。您能否告诉我如何在脚本中设置CLASSPATH
(使用上述值),以便我的脚本可以识别它。我使用 tcsh shell。
I have a script in which I want to set the CLASSPATH
as
/dun/d2ddm0/bea/weblogic91/server/lib/jxl.jar:/dun/d2ddm0/bea/user_projects/domains/RMGemDev3023/server/lib/weblogic.jar:/dun/d2ddm0/bea/user_projects/domains/RMGemDev3023/server/lib/parser.jar:/dun/d2ddm0/bea/user_projects/domains/RMGemDev3023/server/lib/jconn2.jar:.
When I declared in the shell script and then did the export CLASSPATH
.My script is not working .Could you please tell how can I set the CLASSPATH
(with the above value) in the script so that my script could recognize it. I use tcsh
shell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 tcsh 中,您使用 setenv 而不是导出(这是 bash 主义)
所以,您应该尝试:
祝您好运。
In tcsh you use setenv instead of export (which is a bash-ism)
So, you should try:
Good luck.