คุณสามารถแปลงสคริปต์ในสคริปต์ Drush เปลือก
  สคริปต์ drush shell คือไฟล์สคริปต์เชลล์ Unix ใด ๆ ที่มีชุดบิต "execute" (เช่นผ่านchmod +x myscript.drush) และเริ่มต้นด้วยบรรทัดที่ระบุ:
    #!/usr/bin/env drush
  
  หรือ 
    #!/full/path/to/drush
สคริปต์ Drush ดีกว่าสคริปต์ Bash ด้วยเหตุผลดังต่อไปนี้:
- พวกเขาเขียนด้วย PHP
- Drush สามารถบูตไซต์ได้ก่อนที่จะเรียกใช้สคริปต์
ต่อไปนี้เป็นตัวอย่างที่คุณสามารถค้นหาบน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>ถ้าสคริปต์ไม่ได้เป็นปฏิบัติการที่คุณเรียกมันด้วย