summaryrefslogtreecommitdiff
path: root/upload.sh
blob: 23f25b8112c2f277031619f435ccb1a5015b4fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

URL=$(basename $(dirname $(readlink -f ${BASH_SOURCE[0]})))

pushd output
sftp webhost:${URL}/html <<EOF
put *.html
put -r posts
put -r static
put -r cv
EOF
popd