How To Set $PATH Permanantly in Linux
If you have been using Linux for some time, you would know that if you place a bash script in /usr/bin or /usr/sbin , they can be executed directly by simply executing the name of the script. Similarly, all the…
If you have been using Linux for some time, you would know that if you place a bash script in /usr/bin or /usr/sbin , they can be executed directly by simply executing the name of the script. Similarly, all the…
When music players are discussed in the Linux world, Rhythmbox is the first suggestion of every user. And why wouldn’t it be? It is the best audio player out there, with Radio FM support and even Podcasts! In this article,…
You can use commands like ‘cd’ and ‘cd ..’ to navigate between the folders in the Linux Terminal. But it is not efficient and certainly more time-consuming, as you may not remember all the subdirectories present in a directory, and…
In this tutorial, we are going to learn about copying files with a specific extension from one directory to another, and later we will remove the original files. For this tutorial, we are going to learn more about the cp…
Command-line is a powerful tool because we can redirect the output of a command to another command in a single line, and in this case, we will redirect the output of find command to the cp command. In this tutorial,…
There are few ways through which we can list files and directories in the Linux Terminal. One command is extremely common to list directories, and that command is ls command. But listing files through ls has limitations, it cannot display…