Hints and tips on ssh
These are some helpful hints on various topics.
		
		apache
		bash
		cmd
		database
		java
		javascript
		linux
		mod_rewrite
		mssql
		mysql
		oracle
		os
		perl
		php
		regex
		rsync
		ssh
		svn
		unix
		web_design
		windows
		
	
One-liner for transfering SSH public key to remote host
cat ~/.ssh/id_rsa.pub | ssh hostname "cat >> ~/.ssh/authorized_keys"Rsync over ssh with non-default port
If you use rsync over ssh to a server running on port different from 22, for example 555, use the following format:rsync -a -e "ssh -p 555" rsyncuser@remoteserver:/data/to/sync /archive/
More on rsync