1

私は bash スクリプトを持っており、それを実行すると、次の質問が表示されます。

「sites/default/files ディレクトリを作成し、sites/default/settings.php ファイルを作成して、'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
4

1 に答える 1

2

-yオプションを追加すると、次のようになります。

drush si geoslate -y --db-url='mysql://root:root@localhost/geo_test' --site-name=Geoslate
于 2013-04-24T14:46:11.383 に答える