maraigue (owner)

Revisions

gist: 88582 Download_button fork
public
Public Clone URL: git://gist.github.com/88582.git
update-P3.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
 
# Twitterクライアント P3:PeraPeraPrv
# (http://sites.google.com/site/peraperaprv/)を
# 最新版に更新する
#
# PeraPeraPrv.jarのあるディレクトリにこのファイルを置き、
# 最新版に更新したいときに実行する。
 
# Remove all old files and download P3 archive
rm -f P3_Jar.zip
rm -rf P3_?_??
wget 'http://www.geocities.jp/lynmock/work/P3/P3_Jar.zip'
unzip P3_Jar.zip
 
# Update
cp -r P3_?_??/* .
rm -rf P3_?_??
echo PeraPeraPrv.jar is updated.