sh Drush在其自己的文件夹中更新Drupal Sites的目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Drush在其自己的文件夹中更新Drupal Sites的目录相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# drushUpByDir.sh - https://gist.github.com/pcoughlin/8a0afb2a108241334111d0df7d77ed04
output=_drush_up_`date +%Y%m%d-%H%M%S`
for site in `find . -maxdepth 1 -type d ! -name "_*" ! -name "all" `; do
        if [ "$(basename $site)" != "." ]; then
                echo '------------------------------------------ ' $(basename $site) | tee -a $output
                drush -l $(basename $site) up -y | tee -a $output
                echo '------------------------------------------ ' | tee -a $output
                echo ' ' | tee -a $output
        fi
done

以上是关于sh Drush在其自己的文件夹中更新Drupal Sites的目录的主要内容,如果未能解决你的问题,请参考以下文章

sh drush命令用drupal运行php

sh Drupal 7 Drush View节点打印R.

sh 使用Homebrew在万神殿为Drupal安装Drush和Terminus

无法使用 Drush 10 更新 Drupal 9 数据库和语言环境

如何修复 drupal8 的错误“drush - command not found”?

drupal-note2 drush运行make文件