bash – Page 7 – POFTUT

Linux History Command Tutorial with Examples

Linux history is a function of the bash that provides previously issued commands with different options. In this tutorial we will look these options. Display History To simple list history providing history command is enough. History file is located in users home directory and named .bash_history for bash shell. $ history OR another way to … Read more

How To Run Parallel Jobs/Process/Programs in Bash

We generally run jobs in bash in serial order. Serial order means one command runs and after completion other command starts. There is another way to run jobs which are named parallel. Running parallel means multiple jobs run at the same time side by side. Send Job To The Background We will start with a … Read more