print working directory ( pwd , PWD , OLDPWD ) in Linux / Unix

pwd command

When we work in terminal or command line, sometime we want to know in which current directory we are working. And sometimes we also want to know in which previous directory I worked.These requirement are simple but are very important for system administration. Information of working directory is also required in scripting. When system administrator … Read more

6 important examples of cd command on Linux and Unix Systems

cd command

In Linux and Unix Systems, cd command is one the basic,essential and frequently use command.Abbreviation of cd is “Change Directory” . For Linux/Unix System Administrator, it is important to know by how many ways cd command can be used. In this post, I have listed 6 examples which will help you in your daily system … Read more

type Command : Display Information About Command Type On Linux

type command

In this post we are explaining about type command with examples. In Linux system, type command is used for displaying information about command types. It displays if command is an alias,shell function, shell builtin, disk file, or shell reserved word. You can use type command with other command names also. With the help of type … Read more

How To Find Absolute Full Path Of Command On Linux / Unix : which command

In Linux and Unix systems, commands are executable files. The commands may be specific with user environment. We can set the absolute path of specific command as per user in environment. If we require the information, to get the absolute path of command. In that case we will use which command. To find the absolute … Read more