Tips tagged ssh


9

Tip #552   Using ssh as a generic stdin consumer and stdout producer

Many people use netcat on both the remote and local machine in order to transfer stdin and stdout to and from machines over the network, but many don't realize you can do the exact same thing using one line with SSH:

Read more »

9

Tip #547   Connect your mic to a remote speaker

You can use the following to output your microphone to a remote computer's speaker:

Read more »

2

Tip #536   Comparing local and remote files

Suppose we have to find the differences between local file "/tmp/localfile" and remote file "/tmp/remotefile" located on remote host 123.4.5.6

This is how can do it:
Read more »

9

Tip #381   SSH tab completion

tab completion is something we use all day long. put this into your .bash_profile. You can use tabs to auto complete the hostname for ssh calls.

Read more »