SlideShare a Scribd company logo
Intro to Drush
  “DRUpalSHell”
 Drupal Down Under 2011: Brisbane



Matthew Lechleider
 PhamilyDev.net
Drush?

    Command and scripting interface for Drupal.

    Commands for modules, themes, profiles,
    translations, and more!

    Runs update.php, executes sql, DB migrations,
    runs cron or clears cache.

    NOT a module.

    NOT Drupal version specific.

    NOT for end users.
Command Line??

    Scary at first, but your new best friend.


    Basic Commands:
      cd “change directory”
      ls “list”
      mv “move”
      rm “remove”
      cp “copy”
      tar/gzip “compression similar to zip”
      chown “change ownership”
Installation
                     Minimum of PHP 5.2


    Linux                     
                                  Windows

    −   php5-cli                  −   gzip, libarchive
    −   chmod u+x drush           −   tar and wget
    −   Alias or link “ln”            executables
                                  −   drush.bat
                                  −   php.exe
Gotcha!

    Need a copy of the PEAR Console_Table

    File and user permissions

    First time, manually run “./drush”

    If alias, must refresh .bashrc

      “source .bashrc”
Why?

    Drush status

    Drush help

    Drush pm-info

    Drush pm-enable

    Drush pm-disable

    Drush cron

    Drush cache-clear
End.

     Thanks DDU!

Matthew@Lechleider.com

    PhamilyDev.net

More Related Content

PDF
PDF
Contribuir a Drupal - Entorno
ODP
Drush - More Beer, Less Effort
PDF
Pavlenko Sergey. Drush: using and creating custom commands. DrupalCamp Kyiv 2011
PDF
Cli1 Bibalex
PPTX
Intro to Drush
PDF
Unix for Librarians
PPT
Drush and drupal. администрирование волчек михаил
Contribuir a Drupal - Entorno
Drush - More Beer, Less Effort
Pavlenko Sergey. Drush: using and creating custom commands. DrupalCamp Kyiv 2011
Cli1 Bibalex
Intro to Drush
Unix for Librarians
Drush and drupal. администрирование волчек михаил

What's hot (20)

PPTX
Basic command of hadoop
PPT
Drush&drupal. administration
ODP
Day 2-some fun coding
PPT
Drush. Why should it be used?
PDF
리눅스 간단 강의 5강
PPT
Sls01 Lecture02 Linux In Practice
PDF
PPTX
Dc kyiv2010 jun_08
PDF
Linux: LVM
DOCX
Hadoop installation
PDF
Container security: seccomp, network e namespaces
PPTX
Using linux in schools
DOCX
Run wordcount job (hadoop)
PDF
How to Build Package in Linux Based Systems.
PPTX
UNIX/Linux training
PPT
Anandha ganesh linux1.ppt
ODP
An Introduction to GNU/Linux
PDF
linux-commandline-magic-Joomla-World-Conference-2014
PPT
Common linux ubuntu commands overview
Basic command of hadoop
Drush&drupal. administration
Day 2-some fun coding
Drush. Why should it be used?
리눅스 간단 강의 5강
Sls01 Lecture02 Linux In Practice
Dc kyiv2010 jun_08
Linux: LVM
Hadoop installation
Container security: seccomp, network e namespaces
Using linux in schools
Run wordcount job (hadoop)
How to Build Package in Linux Based Systems.
UNIX/Linux training
Anandha ganesh linux1.ppt
An Introduction to GNU/Linux
linux-commandline-magic-Joomla-World-Conference-2014
Common linux ubuntu commands overview
Ad

Viewers also liked (8)

PDF
DGU workshop online
PDF
Eurolib - Workshop Prezentation
PPT
Augustus Dye Photo Ppt
PDF
Language school Pelikan Brno
PPT
San francisco supahquake
PDF
Dgu en 1
ODP
DOC
Stuff to print my road
DGU workshop online
Eurolib - Workshop Prezentation
Augustus Dye Photo Ppt
Language school Pelikan Brno
San francisco supahquake
Dgu en 1
Stuff to print my road
Ad

Similar to 2011 - DDU - Intro to Drush (20)

PDF
Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton
PPT
8.1.intro unix
PPTX
An Introduction to Linux
PDF
Linux basic for CADD biologist
PPTX
Presentation for RHCE in linux
ODP
Drush Presentation
PPT
Slide 1 - The University of Mississippi
PDF
Linux Getting Started
PPTX
DrupalTour. Ternopil — Drupal shell or just Drush (Serhii Puchkovskii, Intern...
PDF
A Drush Primer - DrupalCamp Chattanooga 2013
PPTX
Exploring composer in drupal 8 with drupal project - salva molina
PPTX
Linux Presentation
PPT
3. intro
PDF
DevOps: Cooking Drupal Deployment
ODP
Travis Carden/Drupal Nebraks: Drush Presentation
PDF
drbd9_and_drbdmanage_may_2015
PDF
Drush deploy presentation by Goruachev Mikhail
PPTX
Linux privilege escalation
PPT
Linux ppt
PPT
HISTORY, TYPES OF EMBEDDED LINUX, COMMANDS,
Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton
8.1.intro unix
An Introduction to Linux
Linux basic for CADD biologist
Presentation for RHCE in linux
Drush Presentation
Slide 1 - The University of Mississippi
Linux Getting Started
DrupalTour. Ternopil — Drupal shell or just Drush (Serhii Puchkovskii, Intern...
A Drush Primer - DrupalCamp Chattanooga 2013
Exploring composer in drupal 8 with drupal project - salva molina
Linux Presentation
3. intro
DevOps: Cooking Drupal Deployment
Travis Carden/Drupal Nebraks: Drush Presentation
drbd9_and_drbdmanage_may_2015
Drush deploy presentation by Goruachev Mikhail
Linux privilege escalation
Linux ppt
HISTORY, TYPES OF EMBEDDED LINUX, COMMANDS,

2011 - DDU - Intro to Drush

  • 1. Intro to Drush “DRUpalSHell” Drupal Down Under 2011: Brisbane Matthew Lechleider PhamilyDev.net
  • 2. Drush?  Command and scripting interface for Drupal.  Commands for modules, themes, profiles, translations, and more!  Runs update.php, executes sql, DB migrations, runs cron or clears cache.  NOT a module.  NOT Drupal version specific.  NOT for end users.
  • 3. Command Line??  Scary at first, but your new best friend.  Basic Commands: cd “change directory” ls “list” mv “move” rm “remove” cp “copy” tar/gzip “compression similar to zip” chown “change ownership”
  • 4. Installation Minimum of PHP 5.2  Linux  Windows − php5-cli − gzip, libarchive − chmod u+x drush − tar and wget − Alias or link “ln” executables − drush.bat − php.exe
  • 5. Gotcha!  Need a copy of the PEAR Console_Table  File and user permissions  First time, manually run “./drush”  If alias, must refresh .bashrc “source .bashrc”
  • 6. Why?  Drush status  Drush help  Drush pm-info  Drush pm-enable  Drush pm-disable  Drush cron  Drush cache-clear
  • 7. End. Thanks DDU! Matthew@Lechleider.com PhamilyDev.net