Last active
September 15, 2018 22:24
-
-
Save greenbicycle/58d0e1653fdb769a10371fea7d69e699 to your computer and use it in GitHub Desktop.
Basic Bash commands for Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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