码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
Oracle 使用scott用户 set utotrace on报错 SP2-0618,SP2-0611
使用scott用户 set utotrace on报错 SCOTT@TEST0422>set autotrace on SP2-0618: Cannot find the Session Identifier.  Check PLUSTRACE role is enabled SP2-0611: Error enabling STATISTICS report SCOTT@TEST...
分类:数据库   时间:2014-05-10 19:35:23    阅读次数:389
把ps -ef & kill指令写成可以自动执行的shell脚本
之前重启服务器上的服务,均是先使用ps -ef | grep xxx指令查询出PID,然后再使用kill -9 PID指令杀死进程。由于重启的服务只止一个,每次都要重复输入,甚是麻烦。示例今天研究了一下,把以上手动查杀、重启服务的过程写成了shell脚本,重启服务只需执行脚本就可以了。附脚本样例: ...
分类:其他好文   时间:2014-05-07 20:18:02    阅读次数:461
如何在Linux上提高文本的搜索效率
对于系统管理员或程序员来说,当需要在复杂配置的目录中或者在大型源码树中搜寻特定的文本或模式时,grep类型的工具大概是最受欢迎的。如果grep是你最喜欢的工具之一,那么你可能会更喜欢ack。ack是一个基于Perl的类似于grep的命令行工具,但是搜索速度更快,能力比grep更强。尤其是当你是程序员...
分类:系统相关   时间:2014-05-07 18:34:38    阅读次数:509
linux find命令
由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时间来了解一下。即使系统中含有网络文件系统( N F S ),find命令在该文件系统中同样有效,只你具有相应的权限。在运行一个非常消耗资源的find命令时,很多人都倾向于把它放在后台执行,因为遍历一个大的文件系统可能会花费很...
分类:系统相关   时间:2014-05-07 10:24:54    阅读次数:380
常见shell操作
一、find命令详细find命令 -- 之查找指定时间内修改过的文件比如我们要查找linux下指定时间内做过改动的文件,我们可以用find命令,其实find命令的功能十分强大,下面我们通过几个简单的例子来学习下find命令的简单用法:find /opt -iname "*" -atime 1 -ty...
分类:其他好文   时间:2014-05-07 10:11:08    阅读次数:330
linux下minicom的配置和简单使用
安装配置minicom--------------------------------------------------#lsmod | grep usbserial(如果直接使用串口线,而没有用到USB转串口设备,此步可以跳过) 如果有usbserial,说明系统支持USB转串口。安装minic...
分类:系统相关   时间:2014-05-07 10:01:24    阅读次数:417
水题一枚
Description Given a code (not optimized), and necessary inputs, you have to find the output of the code for the inputs. The code is as follows: int a,...
分类:其他好文   时间:2014-05-07 09:56:16    阅读次数:310
Leetcode | Binary Tree Maximum Path Sum
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:其他好文   时间:2014-05-07 09:36:09    阅读次数:300
A Simple Problem
For a given positive integer n, please find the smallest positive integer x that we can find an integer y such that y^2 = n +x^2.   Input The first line is an integer T, which is the the...
分类:其他好文   时间:2014-05-06 19:21:10    阅读次数:290
【Leetcode】3Sum
【Question】 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in ...
分类:其他好文   时间:2014-05-06 14:57:29    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!