News

In this how-to we will look at the find command and a range of additional arguments which will give us a variety of approaches to finding files and directories.
Use find to search for any file larger than 100MB in the current directory. We are working inside our test directory and the “.” indicates to search the current directory. The -type f argument ...
The problem with that command is it’s not only going to search every directory in the hierarchy, it’ll also include directories (such as /proc) that most certainly won’t house your file.
File counting in a directory is a common task that many users might need to perform. It could be for administrative purposes, understanding disk usage, or organizing files in a systematic manner.
To find files containing a specific text string using the find command, you can utilize the following syntax: find /path/to/directory -type f -exec grep -l "text string" {} \; /path/to/directory ...
Also: 5 Linux file and folder management commands you need to know. If you find the file manager on your Linux desktop of choice isn't cutting it, here are five alternatives.
Open your file manager on the Linux desktop and navigate to the directory you need to work in. Once in that directory, right-click on an empty space in the file manager and then select Open In ...