Skip to content

Instantly share code, notes, and snippets.

View razlupercio's full-sized avatar
🎯
Focusing in OSCP

raz razlupercio

🎯
Focusing in OSCP
View GitHub Profile
@mediaupstream
mediaupstream / jekyll-deploy.sh
Created November 19, 2015 10:34
Jekyll website deploy script, using scp
#!/bin/bash
user="username"
host="example.com"
port=22
site_folder="_site"
remote_folder="/var/www/example.com/"
scp -P $port -r ${site_folder}/* ${user}@${host}:${remote_folder}