linux shell脚本运行当前文件夹中的可执行文件
我始终在 /home/a 中有一个名为 toUpperCase 的可执行文件。
现在我位于文件夹 /home/bla/blabla/b 中,其中有一个要转换为大写的文本文件 (toConvert.txt)。 我想做的就是在 /home/bla/blabla/b 中执行的脚本执行类似的操作,
#!/bin/bash
./"/home/a/toUpperCase" toConvert.txt
所以最后我应该在文件夹 < 中包含 converted.txt em>/home/bla/blabla/b
但它给了我一个错误,如 line 2: .//home/a/toUpperCase: does not exit
我该如何解决这个问题?谢谢你!
I have an executable file always in /home/a called toUpperCase.
Now I am in the folder /home/bla/blabla/b where I have a text file to be converted to uppercase (toConvert.txt).
All I want to do is a script that executed in /home/bla/blabla/b does something like
#!/bin/bash
./"/home/a/toUpperCase" toConvert.txt
So in the end I should have converted.txt in the folder /home/bla/blabla/b
But it gives me an error like line 2: .//home/a/toUpperCase: does not exist
How can I resolve this problem? thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的脚本更改为:
Change your script to: