码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
grep 跳过 svn目录
grep -rn "afdfsdfasd" ./ |grep -v "svn" |grep -v "log....." |grep ............可以 在 gerp的结果中,无数次筛选,剔除不要的结果 通过使用: grep -v 选项 。
分类:其他好文   时间:2014-05-17 00:07:33    阅读次数:252
[LeetCode]Max Points on a Line
题目:Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.算法分析:定义最大直线为符合相同条件的直线中通过点最多的那条直线。对每个点p,计算其它的点与p形成的...
分类:其他好文   时间:2014-05-16 23:26:31    阅读次数:389
ubuntu 查看和关闭端口
查看端口:netstat -anp查看指定端口:netstat -anp | grep 9999tcp 0 0 0.0.0.0:9999 0.0.0.0:* LISTEN 4806/node tcp ...
分类:其他好文   时间:2014-05-16 23:03:55    阅读次数:594
linux中查找命令find、locate、whereis、which、type区别
linux中查找命令find、locate、whereis、which、type区别 1. find Java代码 find是最常见和最强大的查找命令,你可以用它找到任何你想找的文件。与查询数据库(/var/lib/locatedb)文件不同,find查找磁盘空间 find的使用格式如下: ...
分类:系统相关   时间:2014-05-16 21:42:27    阅读次数:427
Hadoop伪分布式环境配置
Step1:关闭防火墙 service iptables stop[status] service iptables status chkconfig --list |grep iptables chkconfig iptables offStep2:修改IP (重启网卡:se...
分类:其他好文   时间:2014-05-16 21:22:50    阅读次数:318
Leetcode | Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes...
分类:其他好文   时间:2014-05-16 21:15:37    阅读次数:454
ORA-12516:TNS:listener could not find available handler with matching protocol stack
应用程序连接测试数据库时报ORA-12516:TNS:listener could not find available handler with matching protocol stack 检查监听日志文件,发现大量的TNS-12516错误 cd /u01/app/oracle/product...
分类:其他好文   时间:2014-05-16 18:23:03    阅读次数:247
CENTOS6.2系统日志rsyslog替换默认的日志服务syslog 转载自http://www.phpboy.net/linux/648.html
最近遇到配置centos 6.2的sshd及sftp日志,发现/etc/syslog.conf文件不存在,然后:#rpm -qa | grep syslog出来的是rsyslog-5.8.10-6.el6.x86_64然后:#cat /etc/rsyslog.conf出来的内容几乎和以前的/etc/...
分类:Web程序   时间:2014-05-16 06:38:06    阅读次数:309
LeetCode OJ - Max Points on a Line
题目: Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.解题思路: 第一反应:枚举两个点组成的直线,然后看其他的点在不在这条直线上,在此过程中统计最大.....
分类:其他好文   时间:2014-05-16 05:54:57    阅读次数:193
std::map中函数用法集合
1 STL的map表里有一个erase方法用来从一个map中删除掉指令的节点 2 eg: 3 map mapTest; 4 typedef map::iterator ITER; 5 ITER iter=mapTest.find(key); 6 mapTest.erase(iter...
分类:其他好文   时间:2014-05-14 09:19:03    阅读次数:319
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!