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 | |
FILE=test.xml | |
EXPR="string(/node/node/@*[local-name()='key'])" | |
echo '[prepare1. xmllint --version]' | |
echo $( xmllint --version ) | |
echo "" | |
echo "" |
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
$ cat <<EOF >.git/hooks/post-merge | |
## mergeと同時にsubmoduleを自動update | |
echo "" | |
echo "git submodule update" | |
git submodule update | |
EOF | |
$ chmod a+x .git/hooks/post-merge |
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
## .JPGを.jpgに一括リネームしたい | |
# 単純に置換 | |
/bin/ls -1 *.JPG | pern -npe '$_=~s/.JPG//' | xargs --replace {} mv {} {.JPG,.jpg} | |
# 長いし式があってるかよくわからないのでdryrunしたい | |
/bin/ls -1 *.JPG | perl -npe ' $_=~s/.JPG// ' | xargs --replace {} echo mv {}{.JPG,.jpg} | |
とか | |
/bin/ls -1 *.JPG | perl -nle 'printf("X=%s; echo mv \${X%.JPG}{.JPG,.jpg};\n", $_)' |
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
var xlsx = require('xlsx'); | |
var _ = require('underscore'); | |
var file = 'test.xlsx'; | |
function parsePos(x) { // "AB" => 26*1 + 1*2 => 28 | |
var str = x.toUpperCase(); | |
var ret = 0; | |
for(var i=0,len=str.length; i<len; i++) { | |
ret += Math.pow(26,(len - i -1)) * (str.charCodeAt(i)-64); |
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
- chrome,safari用 | |
- マウス移動で適当にロックオン | |
- バーストはまだない |
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/perl | |
my $args = {eax=>1,ebx=>2}; | |
my ($eax, $ebx) = @{%$args}{qw/eax ebx/}; | |
print "case1: $eax, $ebx\n"; | |
($eax, $ebx) = @{$args}{qw/eax ebx/}; | |
print "case2: $eax, $ebx\n"; |
NewerOlder