6 lines
142 B
Bash
Executable File
6 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -type d -exec chmod a+rx {} \;
|
|
find . -type f -exec chmod a+r {} \;
|
|
\rsync -avzp -e ssh ./_site/ jackfruit:/var/www/html/
|