码迷,mamicode.com
首页 >  
搜索关键字:dig    ( 2020个结果
DNS查询工具:host、nslookup、dig
作者:zhanhailiang 日期:2014-11-011. hosthost提供域名到IP地址的双向解析;host默认通过/etc/resolv.conf读取Name Server来解析,除非提供可选參数server。-a參数相当于进行ANY查询。[root@~]# host pic1.vi.....
分类:其他好文   时间:2015-08-06 18:12:58    阅读次数:324
dig域名
#!/usr/bin/perl#usewarnings;usestrict;useParallel::ForkManager;useJSON::XS;useNet::DNS::Nslookup;useNet::Nslookup;usePOSIXqw(strftime);useDigest::MD5;`[-d./logs]||mkdirlogs`;my$listPath="./domain-list";my$dropPath="./domain-drop";my$logsPath="./logs/";our$d..
分类:其他好文   时间:2015-08-04 23:19:04    阅读次数:244
perl实现守护进程
#!/usr/bin/perlusestrict;useFile::Slurp;useProc::Fork;my$code=read_file(‘./dig.pl‘);while(1){run_fork{child{eval($code);if($@){ERROR$@;}exit;}parent{my$childPid=shift;waitpid$childPid,0;}};sleep1800;}
分类:系统相关   时间:2015-08-04 23:16:57    阅读次数:190
Food hub
Work center List Tillage耕作Hand harvest手工采收Planting种植Cultivating培养Mulching覆盖Dig harvest挖地采收Thresh翻滚Mow割Loose harvest松土采收Rake耙Hand fieldwork人工劳动Insect c...
分类:其他好文   时间:2015-07-30 21:10:26    阅读次数:288
perl守护进程
#!/usr/bin/perlusestrict;useFile::Slurp;useProc::Fork;my$code=read_file(‘./dig.pl‘);while(1){run_fork{child{eval($code);if($@){ERROR$@;}exit;}parent{my$child_pid=shift;waitpid$child_pid,0;}};sleep10;}
分类:系统相关   时间:2015-07-29 19:38:17    阅读次数:187
HDU - 5067 Harry And Dig Machine (bfs + 状态压缩)
题目大意:有一个n*m的网格,网格上面有k个地方有石头,现在要求从左上角出发,遍历所有有石头的地方,然后回到左上角,问最短距离是多少解题思路:因为石头的总数小于等于10,所以可以进行压缩 设dp[i][j][state]表示在(i,j)位置,遍历的石头状态为state,走的最小距离,直接bfs即可#include #include #include <algo...
分类:系统相关   时间:2015-07-24 18:33:59    阅读次数:207
dig 统计域名加速2
#!/bin/bash#authoryeqing<492980936@qq.com>#date2015-07-1910:26:28functiondigThread(){yesNum=0noNum=0i=0data=‘‘yesList=()noList=()date=`date+"%Y-%m-%d%H:%M"`whilereadurl;dodig${url}|egrep‘cloudglb.net|hacdn.net|hadns.net‘>/dev/null2>&1if[$?-e..
分类:其他好文   时间:2015-07-19 21:55:48    阅读次数:144
dig 统计域名加速
#!/bin/bash#authoryeqing<492980936@qq.com>#date2015-07-1910:26:28yesNum=0noNum=0i=0data=‘‘yesList=()noList=()date=`date+"%Y-%m-%d%H:%M"`whilereadurl;dodig${url}|egrep‘cloudglb.net|hacdn.net|hadns.net‘>/dev/null2>&1if[$?-eq0];thenyesList[$i]=..
分类:其他好文   时间:2015-07-19 13:41:02    阅读次数:97
6 Useful Databases to Dig for Data (and 100 more)
6 Useful Databases to Dig for Data (and 100 more)You already know that data is the bread and butter of reports and presentations. Data makes your pres...
分类:数据库   时间:2015-07-18 21:17:55    阅读次数:3395
Linux命令随记
Linux命令随记1、dig命令库安装yuminstallbind-utils这个会随时补充的
分类:系统相关   时间:2015-07-01 06:26:51    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!