command line basics for drupal site builders · what’s drush? a command line shell for drupal. a...

44
Command Line Basics for Drupal Site Builders

Upload: others

Post on 15-Aug-2020

14 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Command Line Basics for

Drupal Site Builders

Page 2: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Tara KingCustomer Service Engineer, PantheonLeadership Team, Drupal Diversity & Inclusion@sparklingrobots d.o/sparklingrobots

Page 3: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Tara King

Customer Success Engineer, Pantheon@sparklingrobots d.o: sparklingrobots

Page 4: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Who this talk is for

Page 5: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

After this session, you’ll know:

● How to find the terminal.

● How to navigate your files.

● How to get help when you get stuck.

Page 6: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

#SiteBuilderCLI

Page 7: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Why should site builders learn to use the command line?

Unimaginable

power!

Page 8: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Operating Systems

● Linux & other *nix systems

● Mac OS X

● Windows (Sorry!)

Page 9: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

For Windows Users:

Cygwin: https://www.cygwin.com/

Page 10: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Don’t Panic.

Page 11: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

What is the command line?

Page 12: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules
Page 13: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules
Page 14: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

The command line is, at its heart, simply a place where you type commands to the computer.

-David Baumgold

Page 15: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Be careful!

Page 16: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Terminal, console, shell

Mac OS X > Applications > Utilities > Terminal

Ubuntu Linux > Applications > System >

Terminal

Page 17: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Anatomy of a command

From https://www.learnenough.com/command-line-tutorial

Page 18: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Navigation

Page 19: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Navigation

Page 20: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Current & Parent Directory

. = current dir

.. = parent dir

Page 21: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

root vs. home

root = / home = ~

Page 22: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

ls

Lists all files in a directory

ls -al

-a = all of them -l = long format

Page 23: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Useful commands

cd sites/default/files = change into directory

cp example.settings.php settings.php = copy

rm mytemplate.html.twig = remove file or directory

mkdir my_theme = make directory for new theme

pwd = print working directory

Page 24: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

How can I learn more?

1. Google it.

2. Check the man page (man ls).

3. Try using -h, --help, -v (php

help).

Page 25: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Text Editors

Page 26: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Text Editors

vim

nano

vi

less

emacs

....and many more!

Page 27: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

The best text editor is the one

you use.

Page 28: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

How to open nano

nano file.txt

Page 29: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Connecting to other computers

Page 30: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

FTP/SFTP

File Transfer Protocol / Secure File

Transfer Protocol

Page 31: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

SSH (Secure Shell)

Page 32: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

ssh-keygen

Page 33: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Version control

Page 34: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

What is version control?

MyCoolProject.txt

MyCoolProject2.txt

MyCoolProject3.txt

MyCoolProject3b.txt

MyCoolProjectFinal.txt

MyCoolProjectFinalFinal.txt

MyCoolProjectFinalFinal2LastChangeIPromise.txt

Page 35: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Let’s see it in action...

Page 36: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Deep Dive!

Let’s Learn Git: No More Excuses

October 27, 3:45 PM-4:30 PM

Tilden

Dwayne McDaniel

Page 37: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Drush

Page 38: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

What’s Drush? A Command Line

Shell For Drupal

Page 39: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

A (short) list of things Drush does...

Install/update Drupal core & contrib modules

Change passwords or log-in to your site

Clear caches

Export/import configuration

...and much, much more!

Page 40: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Install a new module

Page 41: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules
Page 42: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Composer, MySQL...and beyond!

Page 43: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Resources:

http://bit.ly/SiteBuilderCLI

Page 44: Command Line Basics for Drupal Site Builders · What’s Drush? A Command Line Shell For Drupal. A (short) list of things Drush does... Install/update Drupal core & contrib modules

Questions!