News

Your best bet is to make use of the built-in CLI search tools, such as find. The find command is a powerful search command that can easily help you find the files you’re looking for. Let me show ...
In this how-to, we’ll look at various ways of using the find command to help us find files and directories across the Linux filesystem. Sometimes we misplace a file or directory and we can spend ...
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 ...
How to Search Hidden Files. Hidden files in Linux are represented by a dot at the beginning of their filename. To search for hidden files, you can use: find . -type f -name ".*" ...
find is a powerful command that allows you to search for files and directories. You can use it to count files as well. Counting Files with ‘find’ To count all the files in the current directory and ...
If you're new to Linux, there's a very handy file you'll want to learn about right away. Jack Wallen introduces you to the hosts file and how to add entries to it.
Guys a quick question : How do we find all the process which is using a particular file in Unix or Linux ? To answer your quick question you use the find command with the uid or the gid option if ...
Use the basic tail command to display the last 10 lines of a file. Tail the desired number of lines by specifying the -n option. Learn how to use the +N option to display lines starting from the Nth ...