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.
当我运行一个 jar 文件时,/home/jars像这样说java -jar /home/jars/jarfile.jar,它似乎在我所在的任何目录中运行。
/home/jars
java -jar /home/jars/jarfile.jar
如何使它作为当前工作目录java -jar /home/jars/jarfile.jar运行?/home/jars
简单的答案:
( cd /home/jars; java -jar /home/jars/jarfile.jar )
另请参阅此回复。
大多数支持exec调用的语言的类比是exec允许您指定工作目录的变体。
exec
有关简单的 PHP 解决方案,请参阅此内容。