19 lines
319 B
Bash
Executable File
19 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eux
|
|
cd data/awesome-awesomeness
|
|
git stash && git pull
|
|
|
|
~/update_fscrawler.sh
|
|
|
|
rm -rf /var/www/awesm/html /var/www/awesm/terminal
|
|
mv html terminal /var/www/awesm/
|
|
|
|
cd /var/www/awesm
|
|
chown -R :www-data html terminal
|
|
|
|
date -ur html > stats/updated.txt
|
|
ls html | wc -l > stats/sites.txt
|
|
|
|
chmod -R o-rwx ./*
|