Skip to content

Instantly share code, notes, and snippets.

@greenbicycle
Last active September 15, 2018 22:24
Show Gist options
  • Select an option

  • Save greenbicycle/58d0e1653fdb769a10371fea7d69e699 to your computer and use it in GitHub Desktop.

Select an option

Save greenbicycle/58d0e1653fdb769a10371fea7d69e699 to your computer and use it in GitHub Desktop.
Basic Bash commands for Ubuntu
apt-get update # update package info
apt-get upgrade # upgrade installed packages
dpkg -l | grep php # list all installed packages that contain the word php
apt-cache search bla-bla-blah # search for bla-bla-blah
apt-get install bla-bla-blah # install the bla-bla-blah package
apt remove composer # remove the composer
composer require league/climate # install the league/climate package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment