11 2011 档案

摘要:#!/bin/bash # 0:stdin 1:stdout 2:stderr 3..9:files like below while read a<&3 && read b<&4 do echo $a $b printf "0x%04d\n" $(echo "obase=16;$((a|b))" | bc) #obase is hexadecimal done 3<a.txt 4<b.txt #**************************************************** 阅读全文
posted @ 2011-11-04 13:39 ACE封印 阅读(361) 评论(0) 推荐(0)