码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
find用法
find的语法:find [起始目录] 寻找条件 操作还有种表述方式:find PATH OPTION [-exec COMMAND { } \;]因为find命令会根据我们给的option,也就是寻找条件从我们给出的目录开始对其中文件及其下子目录中的文件进行递归搜索,所以我觉的这个地方说是“起始目...
分类:其他好文   时间:2014-06-29 00:57:38    阅读次数:244
JSON--List集合转换成JSON对象
转自:http://www.cnblogs.com/xmaomao/p/3184542.html1. 简单的手动放置 键值对 到JSONObject,然后在put到JSONArray对象里List al = articleMng.find(f); System.out.prin...
分类:Web程序   时间:2014-06-18 10:48:53    阅读次数:311
[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 nu...
分类:其他好文   时间:2014-06-18 10:17:40    阅读次数:174
HDU-3473Minimum Sum
Problem Description You are given N positive integers, denoted as x0, x1 ... xN-1. Then give you some intervals [l, r]. For each interval, you need to find a number x to make as small as possible! ...
分类:其他好文   时间:2014-06-18 00:58:54    阅读次数:276
LeetCode: Longest Common Prefix 题解
Write a function to find the longest common prefix string amongst an array of strings.题解: 寻找一组字符串的最长公共前缀。最简单的方法,用一个字符串记录当前最长的公共前缀,然后依次比较。时间复杂度: O(N). ...
分类:其他好文   时间:2014-06-18 00:03:08    阅读次数:274
学习用CMake来编写Qt程序
最近开始学习CMake,因为项目需求需要用到Qt,自带的qmake会出现许多问题(比如文件修改之后有时候qmake不会侦测到不会重新编译,需要手动去编译等),于是开始尝试使用CMake来编写Qt程序,顺便学习一下怎么用CMake来使用find_package,也算给自己一次学习的机会。     切入正题,CMake对于一些有名的库都有自带文件夹中Modules里.cmake文件查询的支持,比如你...
分类:其他好文   时间:2014-06-17 19:17:05    阅读次数:255
检查HP服务器硬盘状态脚本
检查HP服务器硬盘状态脚本(如有问题则发邮件通知):#vidisk.sh按a或i进入编辑模式#!/bin/bashName=`hostname`Date=`date+%m%d%y`Num=`dmidecode|grep-i‘serialnumber‘|head-n1`Disk=`hpacuclictrlallshowconfig|grepphysicaldrive|awk-F[:""]+‘{print$15}‘`#echo$Diski=1;for..
分类:其他好文   时间:2014-06-17 17:44:32    阅读次数:328
pgrep/pkill的使用方法
如果一个程序启动了很多进程,那怎么看所有的进程的PID呢,你可以ps-ef|grep进程查看,但是有一个好的命令pgrep可以快速的查看首先看一下pgrep的使用:pgrep是通过程序的名字来查询进程的工具,一般是用来判断程序是否正在运行。在服务器的配置和管理中,这个工具常被应用常用..
分类:其他好文   时间:2014-06-17 17:41:52    阅读次数:338
让MAC的终端显示颜色
vi.profile-----------------aliasls=‘ls-F‘aliascls=‘clear‘aliasgrep=‘grep--color=auto‘CLICOLOR="xterm-color"LSCOLORS="gxfxcxdxcxegedabagacad"exportCLICOLORLsCOLORSvi.vimrc-----------------syntaxon
分类:其他好文   时间:2014-06-17 17:27:36    阅读次数:280
find之depth列出第一层目录
gamedb:/bak/backup/web#find.-maxdepth1-ctime+60|more ./cncgcg ./gm ./igame ./20140410 ./20140403 ./qzstatistics ./20140415使用maxdepth可以指定列出的层数
分类:其他好文   时间:2014-06-17 17:07:30    阅读次数:253
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!