Rsync

What is Rsync over SSH?

Rsync is a very flexible network-enabled syncing tool. It can also refer to the network protocol developed to utilize this tool.  Rsync stands for Remote Sync. Normally rsync is used to transfer file from one server (source) to another server (destination). Basic Syntax 1)  Create some test files with the following commands: cd ~ mkdir […]

See More

Exclude a directory or multiple directories using find command

How to exclude a directory or multiple directories using find command? Quick view on >> Find command and switches << Method 1 : Using the option “-prune -o” We can exclude directories by using the help of “path“, “prune“, “o” and “print” switches with find command. See the example: # find ./ -path ./bit/* -prune -o […]

See More