6 lines
155 B
Bash
6 lines
155 B
Bash
|
#!/opt/local/bin/zsh
|
||
|
|
||
|
find . -type d -exec chmod 755 {} \;
|
||
|
find . -type f -exec chmod 644 {} \;
|
||
|
\rsync -avzp -e ssh ./_site/ jackknife:/home/justhsu/html/
|