码迷,mamicode.com
首页 >  
搜索关键字:cut    ( 5015个结果
grep线上环境精典案例后续
请执行命令取出linux中eth0的IP地址(请用cut,有能力者也可分别用awk,sed命令答)。自己的方法:[root@nginx_back~]#ifconfigeth0eth0Linkencap:EthernetHWaddr00:0C:29:21:B6:B1inetaddr:192.168.0.131Bcast:192.168.0.255Mask:255.255.255.0inet6addr:fe80::20c:29ff:fe21:b6b..
分类:其他好文   时间:2015-05-04 07:33:02    阅读次数:174
cut命令用法讲解
cutcut命令可以从一个文本文件或者文本流中提取文本列。cut语法[root@www~]#cut-d‘分隔字符‘-ffielesfile_name<==用于有特定分隔字符[root@www~]#cut-c字符区间<==用于排列整齐的信息选项与参数:-d:后面接分隔字符。与-f一起使用;-f:依据-d的分隔字符将一段信息分割..
分类:其他好文   时间:2015-05-03 14:45:04    阅读次数:107
linux的一些命令 -查看cc攻击-网口ip统计等
查看所有80端口的连接数? Java代码?? netstat?-nat|grep?-i?‘80‘|wc?-l?? 对连接的IP按连接数量进行排序?? ?? netstat?-ntu?|?awk?‘{print?$5}‘?|?cut?-d:?-f1?|?sort?|?uniq?-c?|?...
分类:系统相关   时间:2015-05-02 16:43:14    阅读次数:213
Linux 查硬件配置
一:查看cpumore /proc/cpuinfo | grep "model name"grep "model name" /proc/cpuinfo如果觉得需要看的更加舒服grep "model name" /proc/cpuinfo | cut -f2 -d:二:查看内存grep MemTot...
分类:系统相关   时间:2015-04-28 14:03:43    阅读次数:143
shell统计重复次数
(1)awk-F,‘{a[$2]++}END{for(iina)printi""a[i]}‘文件名.txt(2)cat文件名.txt|cut-d,-f2|sort|uniq-c|sort-n
分类:系统相关   时间:2015-04-27 23:58:14    阅读次数:242
python下结巴中文分词
jieba中文分词的使用 import jieba sentences = ["我喜欢吃土豆","土豆是个百搭的东西","我不喜欢今天雾霾的北京", 'costumer service'] # jieba.suggest_freq('雾霾', True) # jieba.suggest_freq('百搭', True) words = [list(jieba.cut(doc)) for...
分类:编程语言   时间:2015-04-27 16:58:00    阅读次数:301
ECSHOP 商品详情页购买数量 添加加减按钮
<inputname="number"type="text"id="number"value="1"size="4"onblur="changePrice()"style="border:1pxsolid#ccc;"/>修改为<spanclass="goods_cut" _src="p_w_picpaths/plus1.gif" alt="减少"width="15"height="15"/></span><inputname="number"type="te..
分类:其他好文   时间:2015-04-27 15:31:06    阅读次数:154
Linux环境下查看服务器硬件配置信息以及服务占用资源命令
查看机器型号: dmidecode | grep"Product Name"查看网卡信息: dmesg | grep -ieth 查看CPU信息: cat /proc/cpuinfo 只看CPU型号: cat/proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 查看物理CPU个数: grep "physical id" /proc/cp...
分类:系统相关   时间:2015-04-27 15:17:18    阅读次数:178
HackerRank - Cut the Tree
Typical tree recursion works. The key is: ANY node can be treated as the root, since it is about edge, not about node. This simplifies things a lot.#i...
分类:其他好文   时间:2015-04-27 14:59:09    阅读次数:120
poj 3017 Cut the Sequence(单调队列优化 )
题目链接:http://poj.org/problem?id=3017题意:给你一个长度为n的数列,要求把这个数列划分为任意块,每块的元素和小于m,使得所有块的最大值的和最小分析:这题很快就能想到一个DP方程f[i]=min{f[j]+max{a[k]}}(b[i] 2 #include 3 #i....
分类:其他好文   时间:2015-04-26 22:24:00    阅读次数:191
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!