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.
我有一个shell script(myfile.ksh)文件,其中包含命令序列。某处将有一个用新文件替换这个myfile.ksh的命令。
shell script
我在myfile.ksh中研究过,我可以使用&.
&
. newfiletocopy.ksh &
我付出了很多努力来复制和替换自己的文件。
有没有更好的方法来实现这一目标?
有点不清楚你想要什么,但如果你想在当前正在执行的文件上复制另一个文件,添加这样简单的东西应该可以工作:
cp newfiletocopy.ksh $0