码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
grep学习笔记
grep 命令是一个很常用的命令,主要的用法如下: 格式: grep [options] ^   锚定行的开始 eg; jiangjian@jiangjian-K42JZ:~/sh$ grep '^data' data2 data11,data12,data13 data21,data22,data23 data31,data32,data33 jiangjian@jiang...
分类:其他好文   时间:2014-05-15 01:43:05    阅读次数:329
LeetCode--Single Number II
Single Number II  Total Accepted: 14472 Total Submissions: 44420My Submissions Given an array of integers, every element appears three times except for one. Find that single one. Note: Y...
分类:其他好文   时间:2014-05-15 01:23:42    阅读次数:273
【LeetCode】- Two Sum(两数相加)
[ 问题: ] Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the ta...
分类:其他好文   时间:2014-05-15 00:04:39    阅读次数:377
鸽巢原理
鸽巢原理: n+1个鸽子放入n个窝中,至少有一个窝含有两只鸽子 Find a multipleTime Limit:1000MSMemory Limit:65536KTotal Submissions:5590Accepted:2434Special JudgeDes...
分类:其他好文   时间:2014-05-14 23:00:02    阅读次数:375
linux学习与实践(4)--常用命令备忘
1.查看程序对应进程号:ps–ef|grep进程名2.Linux下查看端口号所使用的进程号:使用lsof命令:lsof–i:端口号
分类:系统相关   时间:2014-05-14 22:55:34    阅读次数:483
HOWTO Use Python in the web — Python v3.0.1 documentation
HOWTO Use Python in the web — Python v3.0.1 documentationmod_python?People coming from PHP often find it hard to grasp how to use Python in the web. T...
分类:编程语言   时间:2014-05-14 22:31:33    阅读次数:401
Best Time to Buy and Sell Stock III
Total Accepted: 8400 Total Submissions: 38235 My Submissions Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profi...
分类:其他好文   时间:2014-05-14 19:39:53    阅读次数:275
在windows server 2008中安装SQL Server 2008 R2 1433端口未启用解决办法
SQLServer一般默认的端口为1433,但有时会遇到无法连接端口1433的问题,检查端口1433是否启用的方法为:开始–>输入cmd–>回车–>telnetlocalhost1433->回车出现黑屏,表示本机连接端口1433成功。或者开始–>输入cmd–>回车–>netstat-an|find"1433"->..
分类:数据库   时间:2014-05-14 18:20:51    阅读次数:409
Linux系统的grep以及正则表达式浅析!
grep命令可以从文本中或者通过管道送过来的字符流中或一个"-"符号代替文件名来搜索精确或者模糊的匹配信息,grep家族有三个命令:grep,egrep,fgrep。grep支持正则表达式匹配查找egrep支持扩展正则表达式匹配查找fgrep不支持正则表达式匹配查找grep命令的格式:grep[OPT]‘PATTERN‘F..
分类:系统相关   时间:2014-05-14 17:24:27    阅读次数:428
grep用法简介之二
上一篇文章总结了一些grep基本用法。在这次的内容里介绍grep和正则表达式结合使用的方法。首先介绍下正则表达式,正则表达式非基本和扩展两种。名词释义:正则表达式:正则表达式其实就是描述某些复杂规则字符串的代码集合。元字符:在正则表达式中具有特殊意义的专用字符正则..
分类:其他好文   时间:2014-05-14 15:52:01    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!