linux shell脚本运行当前文件夹中的可执行文件

发布于 2024-10-26 04:33:17 字数 471 浏览 4 评论 0原文

我始终在 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兰花执着 2024-11-02 04:33:18

将您的脚本更改为:

#!/bin/bash
"/home/a/toUpperCase" toConvert.txt

Change your script to:

#!/bin/bash
"/home/a/toUpperCase" toConvert.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文