Key Linux (Bash) Commands Table

Command Description whoami outputs the username hostname outputs the computer name ls -l  outputs the long list of directory man ls Show manual cat /etc/issue outputs the distribution and version (ubuntu) pwd print working directory cd / To navigate into the root directory cd or cd~ To navigate to your home directory cd – Navigate … Read more

Combining Linux Bash Commands

Introduction In few previous posts on Ubuntu and Linux commands, we saw few of the useful commands. In this post, we will learn few more Linux commands and also learn how to pipe these commands together to build a powerful customized tool from small simple building blocks. But before we start combining/piping commands together, lets … Read more