News

find / -path /proc -prune -false -o -name 'dev.conf' What that command does is search the entire filesystem for a file named dev.conf, but leaves out the /proc directory in the process.
The Linux find command makes it easy to find files on your system – even if you don’t remember their names or exactly when you last updated them. Some of the options are a bit more challenging ...
Apart from file concatenation, the cat command can be leveraged for advanced text manipulation tasks. By combining it with other commands like sed or awk, you can perform complex text transformations, ...
Fortunately, these Linux commands make it fairly easy to download files from a local or remote location. I'm going to show you three: wget, curl, and scp. 1. wget The wget command is my go-to for ...
Let’s get to know the Linux Command Line Interface (CLI). Introduction A bit of history First look at the command line Command syntax Notes Basic commands pwd ls file cat cd clear history cp mv rm ...
To decrypt that file, do the following. Open a terminal window. Change to the ~/Documents directory with the command cd ~/Documents. Decrypt the file with the command gpg important.dox.gpg.
This article will introduce the concept of playing a file line by line in Linux with the help of examples and best user tips. We'll walk you through some of the most common errors made when reading a ...
If we want to zip a single file, you could use a command like the second of the two commands shown below. The file to be zipped (tips.html) is shown in the first command. $ ls -l tips.html ...