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 | |
# -*- encoding:utf-8 -*- | |
exiftool=`which exiftool` | |
# is exif tool already installed? | |
if [ -z $exiftool ]; then | |
echo "please install exiftool." | |
echo "sudo apt-get install libimage-exiftool-perl" | |
exit 1 |
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 | |
usage () | |
{ | |
echo "usage: unfreeze <some freezed file>" | |
echo "supported file:" | |
echo " .tar.bz2" | |
echo " .tbz2" | |
echo " .tbz" | |
echo " .tgz" |
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
#! /usr/bin/env clojure | |
(import '(org.apache.http HttpHost) | |
'(org.apache.http.client HttpClient) | |
'(org.apache.http.client.methods HttpGet) | |
'(org.apache.http.impl.client DefaultHttpClient) | |
'(org.apache.http.conn.params ConnRoutePNames) | |
'(java.io File | |
BufferedReader InputStreamReader | |
InputStream FileInputStream | |
OutputStreamWriter FileOutputStream)) |
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
#!/usr/bin/env ruby | |
# | |
# adb logcat をもっと見やすく. | |
# | |
require 'optparse' | |
# | |
# global option. |
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 | |
# | |
# Android easy screen capture. | |
# | |
# usage: | |
# ashot | |
# ashot shot1.png | |
# |
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 | |
# | |
# ruby manual refe | |
# | |
rubyrefm=$HOME/src/rubyrefm | |
ruby -Ke -I \ | |
$rubyrefm/bitclust/lib \ | |
$rubyrefm/bitclust/bin/refe \ |
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 | |
## | |
# usage: | |
# question "Are you good?" | |
# answer=$? | |
# if [ $answer -eq 1 ]; then | |
# echo "ok" | |
# fi | |
function question() { |
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 | |
# | |
# ljust | |
# | |
# ruby like command line string formatter. | |
# | |
# | |
# usage: |
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 | |
if [ $# -lt 1 ]; then | |
echo "usage: [apk file]" | |
exit 0 | |
fi | |
APKFILE=$1 | |
APKTOOL=apktool | |
D2J=d2j-dex2jar.sh |
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 | |
# | |
# dpifile | |
# | |
# usage: dpifile help ic_help | |
# | |
if [ $# -lt 2 ]; then | |
echo "usage: [fromfile] [to_file]" |
OlderNewer