??????????????У?????????????????????????????Σ????г????????????????????????????????????????????????????????????????????????????????????????????????api????Щ???????????Щ???????????????????????????????????????????????????ο??????????????????????????????
????shell???????????????Щ???????????????
??????????????????????date)
????????????????????????????????????????????????????????????????????????г??????????
?????????
????[chengmo@centos5  shell]$ date +%s
????1287764773
????#????????????????1970-01-01 00:00:00 ????????
????#?????????????????????????????????????????????????????????????????????????
????[chengmo@centos5  shell]$ date +%N
????738710457
????#??????????????????????????????
????#????????????????cpu????????????棬???????棬?????????????????????????????滹???д?????????
????[chengmo@centos5  shell]$ date +%s%N
????1287764807051101270
????#?????????????????????????????????????????
????????????????????????????????????????????????????????????????????????????????
#!/bin/sh
#д??????????????÷???random min max
#??min ?? max????????????
#copyright chengmo QQ:8292669
#???????????????shell??????????????????????
function random()
{
min=$1;
max=$2-$1;
num=$(date +%s+%N);
((retnum=num%max+min));
#????????????????
echo $retnum;
#???????echo ??????????????ú??????stdout???????
#???????????????????????????????????????????
}
#???1-10??seq??????
for i in {1..10};
do
out=$(random 2 10000);
echo $i??"2-10000"??$out;
done;
???????????н????
????[chengmo@centos5 shell]$ sh testrandom.sh
????1??2-10000??5600
????2??2-10000??5295
????3??2-10000??3432
????4??2-10000??3148
????5??2-10000??9041
????6??2-10000??4290
????7??2-10000??2380
????8??2-10000??9009
????9??2-10000??5474
????10??2-10000??3664
?????????????棬?????????????