Ви можете конвертувати скрипт у сценарій оболонки Drush .
Скрипт оболонки друшля - це будь-який файл сценарію оболонки Unix, у якого встановлений біт "Execute" (тобто через chmod +x myscript.drush
) і який починається з певного рядка:
#!/usr/bin/env drush
або
#!/full/path/to/drush
Друковані сценарії кращі за сценарії Bash з наступних причин:
- Вони написані на PHP
- Друш може завантажувати сайт перед запуском сценарію
Далі наведено приклад, який ви можете знайти на 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();
Ви можете зробити сценарій виконуваним, так що ви можете виконати його, <script file> <parameters>
де <script name>
є ім'ям скрипта, і чи <parameters>
є параметри, передані сценарію; якщо скрипт не виконується, ви викликаєте його drush <script name> <parameters>
.