If you’re not sure if you’re running a Linux command or you’re using a bash builtin, don’t stress, it isn’t all that obvious. In fact, you can get very used to commands like cd without realizing that ...
If you aren’t a Linux user and you watch someone who knows what they are doing use Bash — the popular command line interpreter — you might get the impression they type much faster than they actually ...
One of the simplest ways to run a command in the background is by appending an ampersand (&) at the end of the command. This method instructs the shell to execute the command as a separate background ...
The select command in Linux is a versatile tool primarily used for menu creation in bash scripts. The command retrieves data from a specified list, which can be an array or other data source, and ...
Ever wondered why programming in Bash is so difficult? Bash employs the same constructs as traditional programming languages; however, under the hood, the logic is rather different. The Bourne-Again ...
Linux operating system allows users to create commands and execute them over the command line. To create a command in Linux, the first step is to create a bash script for the command. The second step ...
The .history file in Linux – whether ~/.bash_history, ~/.zsh_history or ~/.history – provides ways to track and reuse commands that you have recently run. This post suggests how you might make good ...
Ever wanted a cheat code for writing Linux commands without consulting the manpages every time and understanding their usage? Well, there's a tool for that called cheat. Whether you need a quick ...
Microsoft, with the release of the Windows 10 anniversary update, gave their users a gift: the ability to run Linux (Ubuntu) on it. In a previous article, I explained how to enable Linux on Windows ...