Archive for 12月, 2010

 

awk , perl memo

12月 10th, 2010

awk -F’\t’ ‘{ if($14 ~ /jp/ || $15 ~ /jp/ || $16 ~ /jp/){print $10 “\t” $12 “\t” $14 “\t” $15 “\t” $16} }’ awk -F’\t’ ‘{ print $10 “\t” $12 “\t” $14 “\t” $15 “\t” $16 }’ test.txt | perl -ne ‘BEGIN {%aryData=();$i=0;$all=0;} { if (/(.+)\t([0-9]+)/) { $i++;$all+=$2;$nnum=int(100*$i/44669);$vnum = int(($all/170793)*100);print “$i\t$1\t$2\t$all\t$nnum%\t$vnum%\r\n”; }}’

Read full article | コメントは受け付けていません。

Value-domain dns setting

12月 5th, 2010

久しぶりに value-domain.comでドメインを登録して dnsの設定を変えようとしたら画面が変わっていた。 古いドメインは変わっていないのだが・・・? 以前は 1 行ごとのフォームに分かれていたのですが、今回のものは、複数レコードを一つのテキストボックスに入れるものになっていました。 Aレコードの設定 a @ 999.999.999.999 a www 999.999.999.999 みたいな書き方でした。

Read full article | コメントは受け付けていません。