Skip to content

Instantly share code, notes, and snippets.

@maraigue
Created April 1, 2009 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maraigue/88582 to your computer and use it in GitHub Desktop.
Save maraigue/88582 to your computer and use it in GitHub Desktop.
#!/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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment