码迷,mamicode.com
首页 >  
搜索关键字:vim find bash 文件系统    ( 67398个结果
SQL注入之SQLmap入门
什么是SQLmap?SQLmap是一款用来检测与利用SQL注入漏洞的免费开源工具,有一个非常棒的特性,即对检测与利用的自动化处理(数据库指纹、访问底层文件系统、执行命令)。读者可以通过位于SourceForge的官方网站下载SQLmap源码:http://sourceforge.net/projec...
分类:数据库   时间:2014-04-28 06:11:38    阅读次数:1083
Cubieboard2安装Fedora20
在Cubieboard2上安装Fedora20,主要是为TF卡分区,调整文件系统大小,配置SSH和VNC Server。
分类:其他好文   时间:2014-04-28 04:56:47    阅读次数:3486
[Leetcode] 4Sum
Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum of ...
分类:其他好文   时间:2014-04-27 20:55:03    阅读次数:567
49 shell中的冒号
?? 1、表示永真,相当于TRUE关键字。 colon.sh脚本利用while循环打印1到10的整数,while循环的条件使用了冒号,此时冒号就表示永真,即while循环永远执行下去,while循环体内使用if/then结构判断跳出while循环的条件。   1 #!/bin/bash   2   3 i=0   4 while :                   ...
分类:其他好文   时间:2014-04-27 20:37:31    阅读次数:468
除去文件中的重复数据
1.先对文件内容排序:cat 1.txt |sort > 2.txt 保存到2.txt中 2.使用vim打开2.txt 执行替换命令: 替换空格:%s/ //g 替换tab:%s/^I//g   (注意:^I 是直接按键盘是的tab键) 替换$:  %s/^M//g (注意:^M 是按ctrl+v 再按Enter键) 3.cat 2.txt | uniq > 3.txt 本文为...
分类:其他好文   时间:2014-04-27 19:07:00    阅读次数:544
GlusterFS源码解析 —— GlusterFS日志解析
Logging.c: /* Copyright (c) 2008-2012 Red Hat, Inc. This file is part of GlusterFS. This file is licensed to you under your choice of the GNU Lesser General Public License, version 3 or any...
分类:其他好文   时间:2014-04-27 18:57:31    阅读次数:702
【微软2014实习生及秋令营技术类职位在线测试】题目3 : Reduce inversion count
时间限制:10000ms 单点时限:1000ms 内存限制:256MB Description Find a pair in an integer array that swapping them would maximally decrease the inversion count of the array. If such a pair exists, retur...
分类:其他好文   时间:2014-04-27 17:48:35    阅读次数:508
Vim学习笔记
1.复制粘贴操作 vim有12个粘贴板,分别是0、1、2、...、9、a、“、+; 用:reg命令可以查看各个粘贴板里的内容。在vim中简单用y只是复制到“(双引号)粘贴板里,同样用p粘贴的也是这个粘贴板里的内容要将vim的内容复制到某个粘贴板,需要退出编辑模式,进入正常模式后,选择要复制的内容.....
分类:其他好文   时间:2014-04-27 16:51:17    阅读次数:585
67398条   上一页 1 ... 6738 6739 6740
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!