Last active
July 13, 2016 15:15
-
-
Save alpegon/1ebafab73b05a07e7c0e20e63e10b261 to your computer and use it in GitHub Desktop.
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
| # Find system version | |
| lsb_release -a | |
| # Find installed package version | |
| dpkg -s <packagename> | |
| # Find available package versions | |
| apt-cache policy <packageName> | |
| # Create intermediate folders | |
| mkdir -p folder1/folder2/folder3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment