Anda dapat mengonversi skrip dalam skrip Drush shell .
Skrip shell drush adalah file skrip Unix shell yang memiliki set bit "eksekusi" (yaitu, via chmod +x myscript.drush
) dan yang dimulai dengan baris tertentu:
#!/usr/bin/env drush
atau
#!/full/path/to/drush
Skrip Drush lebih baik daripada skrip Bash karena alasan berikut:
- Mereka ditulis dalam PHP
- Drush dapat mem-bootstrap situs sebelum menjalankan skrip
Berikut ini adalah contoh yang dapat Anda temukan di helloword.script .
#!/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();
Anda dapat membuat skrip dapat dieksekusi, sehingga Anda dapat mengeksekusinya dengan di <script file> <parameters>
mana <script name>
nama skrip, dan <parameters>
merupakan parameter yang diteruskan ke skrip; jika skrip tidak dapat dieksekusi, Anda menyebutnya dengan drush <script name> <parameters>
.