我正在使用此脚本在“站点”目录中的每个子目录中运行一个命令,不包括“所有”子目录。但是,当我运行它时,'all' 子目录仍在使用中,即使我使用 if 语句来排除它。
for dir in ~/htdocs/drupal/drupal/sites/*
do
if [ $dir = "/local/users/drupadm/htdocs/drupal/drupal/all" ]
then
continue
fi
echo $dir
(cd $dir && /opt/webstack/php/5.2/bin/php /local/users/drupadm/drush/drush.php $1)
done
布莱恩