码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
删除空行
sed -i ‘/^$/d’ filename在Linux下,用户如果想删除文件中的空行,一般使用“grep”,这里给出另外的几种方式: 1.使用“cat”命令,示例如下:#cat filename|tr -s ‘\n’ 2.使用“sed”命令,示例如下:#sed ‘/^$/d’ filename ...
分类:其他好文   时间:2014-05-15 21:03:37    阅读次数:212
Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他好文   时间:2014-05-15 17:50:38    阅读次数:298
<译>Selenium Python Bindings 4 - Locating Eelements
有各种不同的策略来定位页面中的元素。你可以使用最合适定位方式用于你的用例。Selenium提供了以下方法来定位页面中的元素:find_element_by_idfind_element_by_namefind_element_by_xpathfind_element_by_link_textfi.....
分类:编程语言   时间:2014-05-15 17:28:48    阅读次数:430
CF 27E Number With The Given Amount Of Divisors
A - Number With The Given Amount Of Divisors Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Status Description Given the number n, find the smallest...
分类:其他好文   时间:2014-05-15 13:31:36    阅读次数:343
[LeetCode]Longest Common Prefix
Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings....
分类:其他好文   时间:2014-05-15 13:27:07    阅读次数:233
【LeetCode】Two Sum
Two SumGiven 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...
分类:其他好文   时间:2014-05-15 10:48:59    阅读次数:322
老男孩视频第二部视频学习笔记(第二部)之一:命令(1)
命令:chkconfig catlstaillnfindwctarcutgrepegrep一、如何过滤出已知当前目录下的所有一级目录如何区分目录和文件: 1、利用颜色(这个依赖与CRT等工具) 2、利用开头字母·ls–l|grep^d(正则表达式中一个字符在[]中是非,在[]外面就是以什么开头)·ls–lF|gr..
分类:其他好文   时间:2014-05-15 08:42:55    阅读次数:269
find 命令
linux的文件查找locate使用数据库查找速度快模糊匹配find实时查找精确匹配速度慢find[查找位置][查找标准][处理动作]查找位置默认当前位置查找标准默认当前目录下所有文件处理动作显示到标准输出查找标准-name根据文件名查找-iname忽略大小写-userusername根据用户名查找-group..
分类:其他好文   时间:2014-05-15 08:30:34    阅读次数:220
UVA之1121 - Subsequence
【题目】 A sequence of N positive integers (10 N , each of them less than or equal 10000, and a positive integer S (S < 100 000 000) are given. Write a program to find the minimal length of the subse...
分类:其他好文   时间:2014-05-15 07:58:17    阅读次数:329
sed批量替换文件内容
sed-i"s/123/456/g"`grep123-rl./|grep-vlog`#把当前目录下所有文件中的123替换成456,包括子目录啊
分类:其他好文   时间:2014-05-15 00:57:04    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!