Migrate content between servers
$ scp -r * [email protected]:/old.skyscraper.org/
$ rsync -av -e ssh --exclude-from 'exclude-list.txt' --exclude='*.m4v’ * [email protected]:old.skyscraper.org/
Add no-index tags to the legacy site
find ./ -type f \( -iname \*.htm -o -iname \*.html -o -iname \*.php \) -exec sed -i -e 's/<head>/<head><meta name=\"robots\" content=\"noindex\" \/>/g' {} \;