2

我有多个包含网站的 git 存储库。我想针对他们克隆的本地版本运行 inotifywait 以监视某些文件事件并在检测到这些事件时自动运行 git push 和 git pull 脚本。

到目前为止,我已经为每个目录创建了一个带有单独函数的脚本,但只有第一个函数被调用。

  #!/usr/bin/env bash

  dbg() {
  inotifywait -mr -e ATTRIB /path/to/dbg/ |
  while read dir ev file;
  do
  cd /path/to/dbg
  git pull;
  git add .;
  git commit -m " something regarding this website has changed. check .... for more        info";
  git push;
  ssh remote@server.com 'cd /path/to/web/root; git pull';
  done;
  }
  dbg;

  website2() {
  same thing as above
  }
  website2;

  website3() {
  same thing as above
  }
  website3;

  .......

  website10() {
  ........
  }
  website10;

我怎样才能使这段代码更高效、更重要、更全面,而无需创建和管理 10 个单独的脚本。我真的很想把这个逻辑放在一个文件中,我希望这是一个模块来实现一个更大的项目。

请批评我的提问、我的语法、思维过程等,以便我改进。谢谢你。

4

1 回答 1

2

如果您的逻辑相同,则可以使用 bash 函数来避免复制。此外,提交消息也可以作为参数传递。试试这个

#!/usr/bin/env bash

dbg() {
dbg_dir=$1
webroot_dir=$2
inotifywait -mr -e ATTRIB $dbg_dir |
while read dir ev file;
do
cd /path/to/dbg
git pull;
git add .;
git commit -m " something regarding this website has changed. check .... for more        info";
git push;
ssh remote@server.com 'cd $webroot_dir; git pull';
done;
}
dbg /path/to/dbg /path/to/webroot1 &  # & will run the command in background
dbg /path/to/dbg2 /path/to/webroot2 &
dbg /path/to/dbg3 /path/to/webroot3 &
于 2013-05-31T04:19:16.367 回答