This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14979 119832 59916 | |
56667 56667 0 | |
36799 73598 36799 | |
250097 95000 96715 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="convert" basedir="./" default="ffmpeg_hight"> | |
<property name="disk_no" value="2.5" /> | |
<target name="ffmpeg_hight"> | |
<exec executable="ffmpeg"> | |
<arg value="-y"/> | |
<arg value="-i"/> | |
<arg value="KARTE${disk_no}.VOB"/> | |
<arg value="-vcodec"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# defaults for jenkins continuous integration server | |
JENKINS_ARGS="-jnlpUrl http://test.lnc.jp:8080/computer/wock/slave-agent.jnlp" | |
# jenkins home location | |
JENKINS_HOME=/opt/jenkins-slave | |
# location of the jenkins war file | |
JENKINS_WAR=$JENKINS_HOME/slave.jar | |
# pulled in from the init script; makes things easier. | |
NAME=jenkins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add-apt-repositoryなどのインストール | |
sudo apt-get install python-software-properties | |
# | |
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner" | |
sudo apt-get update | |
sudo apt-get install sun-java6-jdk | |
#Installing required packages | |
sudo apt-get install git-core gnupg flex bison gperf build-essential \ | |
zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# 対象アプリのパッケージ名。 org.zakky.memopad とか | |
pkgname="$1" | |
# 対象アプリの apk。 bin/MemoPad.apk とか | |
apkpath="$2" | |
for i in $(adb devices |grep -v "List of devices" | awk '{print $1;}'); do adb -s $i shell pm uninstall -k "$pkgname"; adb -s $i install "$apkpath"; done |
NewerOlder