使用Drush安装Drupal制作并安装配置文件并使用bash脚本 - 如何回答是/否?

时间:2013-04-24 13:55:59

标签: bash drupal drush

我有一个bash脚本,当我运行它时,我被问到了这个问题:

  

“您即将创建sites / default / files目录并创建一个   sites / default / settings.php文件和DROP“geo_test”中的所有表格   数据库。你想继续吗? (Y / N)“

如何自动回答'y'?

#!/bin/bash
cd /Applications/MAMP/htdocs
#sudo rm -rf geoslate
drush make distro.make geoslate --working-copy --no-gitinfofile
cd geoslate
drush si geoslate --db-url='mysql://root:root@localhost/geo_test' --site-name=Geoslate

1 个答案:

答案 0 :(得分:2)

添加-y选项应该:

drush si geoslate -y --db-url='mysql://root:root@localhost/geo_test' --site-name=Geoslate