SSH find commands

In this article, we’ll cover the basic usage of the SSH find commands you can use in a Linux environment. You can easily find files and folders by type using this SSH command.  Usually, it’s syntax is:

find directory [options]

find by type using SSH

You can search for only files or folders with the following options:

find / -type d #finds directories
find / -type f #finds files

find by name

You can directly find a file by its name

find / -name "myFilename"

find by size

You can list all files that are larger than a given value

find / -size +2M #finds files above 2 megabytes
find / -size -2M #finds files below 2 megabytes

find and execute

You can run other commands on files that you find

find / -name "myFile" -exec chmod 0755 {} \; #changes the permissions of any file called myFile to 0755
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Linux tar Command

The Linux tar command is used to compress and extract files to and from an archive. In this...

How to Install WordPress via SSH

Since WordPress is the most widely used CMS it’s installation process has been made as simple and...

SSH Execute Command on a Remote server

Via SSH you can connect to a remote server’s shell. This will allow you to execute commands on...

How to connect to your shared hosting account via SFTP with FileZilla

SFTP is a convenient way to use SSH, while also using the interface of a simple FTP. In order to...

SSH netstat command

If you wish to debug or track statistics of your network in a Linux environment you can use SSH...