Komut dosyasını bir Drush kabuk komut dosyasında dönüştürebilirsiniz .
Sarhoş bir kabuk betiği, "yürütme" bit kümesine (yani, üzerinden chmod +x myscript.drush
) sahip olan ve belirli bir satırla başlayan herhangi bir Unix kabuk betiği dosyasıdır :
#!/usr/bin/env drush
veya
#!/full/path/to/drush
Drush komut dosyaları, aşağıdaki nedenlerden dolayı Bash komut dosyalarından daha iyidir:
- PHP ile yazılmışlar
- Drush betiği çalıştırmadan önce siteyi önyükleyebilir
Aşağıdaki helloword.script'te bulabileceğiniz örnek .
#!/usr/bin/env drush
//
// This example demonstrates how to write a drush
// "shebang" script. These scripts start with the
// line "#!/usr/bin/env drush" or "#!/full/path/to/drush".
//
// See `drush topic docs-scripts` for more information.
//
drush_print("Hello world!");
drush_print();
drush_print("The arguments to this command were:");
//
// If called with --everything, use drush_get_arguments
// to print the commandline arguments. Note that this
// call will include 'php-script' (the drush command)
// and the path to this script.
//
if (drush_get_option('everything')) {
drush_print(" " . implode("\n ", drush_get_arguments()));
}
//
// If --everything is not included, then use
// drush_shift to pull off the arguments one at
// a time. drush_shift only returns the user
// commandline arguments, and does not include
// the drush command or the path to this script.
//
else {
while ($arg = drush_shift()) {
drush_print(' ' . $arg);
}
}
drush_print();
Komut dosyasını çalıştırılabilir hale getirebilir, böylece komut dosyası adının <script file> <parameters>
nerede <script name>
olduğu ile çalıştırabilirsiniz ve komut dosyasına <parameters>
iletilen parametrelerdir; komut dosyası çalıştırılabilir değilse, onu çağırırsınız drush <script name> <parameters>
.