How a linux command uses C system call defined in header files?
In this post, we will check how a linux command executes on the system. We will learn how a linux command is manipulated by the bash and how it uses...
In this post, we will check how a linux command executes on the system. We will learn how a linux command is manipulated by the bash and how it uses...
Every Linux based Operating system has some standard system variables defined in system files. System files here indicate the program header files and functions exists on our linux system and...
Today we will look at an interesting tip how to run a linux command inside the awk command. For this trick, we will assign the command to a variable, say...
In this post, we will check how to trace a command in Linux or a specific system call used by that command. 1. Tracing a command say “ls -l /etc/hosts”...
Today we will look how to filter lowercase or uppercase letters/words from a file or string in Linux. The easiest way to achieve this task is to use tr command...
Today we will look at a very interesting command “info” to view the commands offered by any package on Linux. On redhat based systems, we can also use the rpm...
In this post we will look how to find process id of current process and any sub shell process id generated as a result of pipe “|” or function “()”....
In this post we will show you a quick tip how can we create a new folder and jump into it. We can use this trick in shell script to...
Suppose you want to add line numbers to the output of some command or when reading any file. In this post we will look at a quick tip how to...
In this post, we will see how to list different process state codes which are available on our Linux system. To see the the process state code, you can see...