Linux tips from http://cb.vu/unixtoolbox.xhtml
This file contains 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
# linux-tips.sh | |
# https://gist.github.com/3927552 | |
# collection of great tips picked from the UNIX TOOLBOX | |
# http://cb.vu/unixtoolbox.xhtml | |
# get distrib infos | |
$ lsb_release -a | |
No LSB modules are available. | |
Distributor ID: Ubuntu | |
Description: Ubuntu 11.04 | |
Release: 11.04 | |
Codename: natty | |
# list all ip addresses | |
$ hostname -I | |
127.0.0.2 87.98.168.247 10.0.0.3 | |
# get directory hierarchy (i should read this :) | |
$ man hier |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment