0

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

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

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

4

2 回答 2

2

您可以使用符号链接功能。ln对您创建的所有文件使用该命令。通过这种方式,您将更改一个文件并显示在每个链接路径中。要创建符号链接,您可以使用这个简单的命令 -ln -s script.sh sample.shsample.sh是将要创建的路径。

于 2013-06-11T10:58:46.690 回答
1

您可以使用

find . -iname 'we.sh' -type f -exec cp '/path/to/modified/script/we.sh {} \;
于 2013-06-11T11:21:20.893 回答