我已经在10个目录中创建了一个shell脚本。

a/we.sh
b/we.sh
c/we.sh
.
.
.
.

如何更新unix/Linux中所有目录中shell脚本的更改。

最佳答案

你可以用

find . -iname 'we.sh' -type f -exec cp '/path/to/modified/script/we.sh {} \;

关于linux - 更新所有目录中的Shell脚本更改,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17041693/

10-11 08:07