Write on the laptop, publish on website
I typically use my Linux laptop for work and surfing, so I’ve wrote a one-liner to use rsync to securely update my blog notes. If you use ssh-agent, you won’t even need to type your ssh password more than once a day.
#!/bin/bash
rsync –exclude ‘*~’ -azv -e ssh ~/public_html/blog/*.txt nozell@www.nozell.com:~/HTML/marc/blog/
Tags: General
This entry was posted
on Tuesday, March 5th, 2002 at 9:13 pm and is filed under General.
You can follow any responses to this entry through the RSS 2.0 feed.
You can skip to the end and leave a response. Pinging is currently not allowed.
Write on the laptop, publish on website
I typically use my Linux laptop for work and surfing, so I’ve wrote a
one-liner to use rsync to securely update my blog notes. If you use
ssh-agent, you won’t even need to type your ssh password more than
once a day.
#!/bin/bash
rsync –exclude ‘*~’ -azv -e ssh ~/public_html/blog/*.txt nozell@www.nozell.com
:~/HTML/marc/blog/
Tags: blosxom
This entry was posted
on Tuesday, March 5th, 2002 at 12:00 am and is filed under Uncategorized.
You can follow any responses to this entry through the RSS 2.0 feed.
You can skip to the end and leave a response. Pinging is currently not allowed.