Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 mac 上,我有一个.command文件,双击应该运行我的脚本,因此应用程序打开。
.command
但问题是应用程序从根文件夹而不是当前文件夹运行。我怎样才能自动化的方式,应用程序首先自动进入我的current directory然后继续。
current directory
可能cd是脚本顶部的一些声明
cd
cd "$(dirname "$0")"进入当前目录。并在其后添加您各自的代码。
cd "$(dirname "$0")"