OSDN Git Service

add japanese comment
[ccunit/ccunit.git] / uploadhp.sh
1 #!/bin/sh
2 set -x
3 tar czf /tmp/html.tar.gz -C doc/html .
4 tar czf /tmp/jahtml.tar.gz -C doc/ja/html .
5 scp /tmp/html.tar.gz tsutsumi@shell.sourceforge.jp:html.tar.gz
6 scp /tmp/jahtml.tar.gz tsutsumi@shell.sourceforge.jp:jahtml.tar.gz
7 ssh tsutsumi@shell.sourceforge.jp 'rm -fr /home/groups/c/cc/ccunit/htdocs/* ; tar xzf html.tar.gz -C /home/groups/c/cc/ccunit/htdocs; mkdir -p /home/groups/c/cc/ccunit/htdocs/ja; tar xzf jahtml.tar.gz -C /home/groups/c/cc/ccunit/htdocs/ja'
8 rm /tmp/html.tar.gz /tmp/jahtml.tar.gz