码迷,mamicode.com
首页 >  
搜索关键字:shell find exec xargs    ( 58933个结果
ahjesus fstab修改错误了如何修复
fstab修改错误了如何修复当你不小心把磁盘表输入错误以后,系统总是让你按ctrl+D重新启动或者输入密码进入shell,你输入密码登陆后,编辑文件是只读的,执行下面的命令后就可以编辑了。mount -o remount,rw /vi /etc/fstab删除错误的磁盘信息,重启就好了。
分类:其他好文   时间:2014-04-29 15:10:14    阅读次数:349
《Cracking the Coding Interview》——第17章:普通题——题目12
2014-04-29 00:04题目:给定一个整数数组,找出所有加起来为指定和的数对。解法1:可以用哈希表保存数组元素,做到O(n)时间的算法。代码: 1 // 17.12 Given an array of integers and target value, find all pairs in ...
分类:其他好文   时间:2014-04-29 15:08:13    阅读次数:469
《Cracking the Coding Interview》——第18章:难题——题目7
2014-04-29 03:05题目:给定一个词典,其中某些词可能能够通过词典里其他的词拼接而成。找出这样的组合词里最长的一个。解法:Leetcode上有Word Break这道题,和这题基本思路一致。代码: 1 // 18.7 Given a list of words, find out the...
分类:其他好文   时间:2014-04-29 14:30:17    阅读次数:493
《Cracking the Coding Interview》——第18章:难题——题目6
2014-04-29 02:27题目:找出10亿个数中最小的100万个数,假设内存可以装得下。解法1:内存可以装得下?可以用快速选择算法得到无序的结果。时间复杂度总体是O(n)级别,但是常系数不小。代码: 1 // 18.6 Find the smallest one million number....
分类:其他好文   时间:2014-04-29 14:27:13    阅读次数:665
LeetCode2:Median of Two Sorted Arrays
题目: There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should...
分类:其他好文   时间:2014-04-29 10:32:46    阅读次数:359
.net List<T>
List的几个方法List=>List.Find()List.FindAll()List.Contains() List.ForEach()List.ConvertAll() 1. 先比较Find()跟FindAll()。 这个两个函数都是 遍历List的集合,只是 区别在于FindAll()返回的...
分类:Web程序   时间:2014-04-29 10:32:46    阅读次数:443
单独运行shell脚本与crontab运行shell脚本的区别
crontab运行脚本存在两大问题:环境变量和路径,从而导致单独运行脚本没问题,但用crontab运行就报错。1、环境变量 描述问题:crontab: usage error: no arguments permitted after this option 因为crontab不提供环境,所...
分类:其他好文   时间:2014-04-29 10:23:47    阅读次数:370
Shell编程 之 条件表达式
1#!/bin/bash -2#===============================================================================3#4#FILE: condition_expression_test.sh5#6# USAGE: ./con...
分类:其他好文   时间:2014-04-29 10:15:46    阅读次数:426
使用公钥登录OpenSSH
使用公钥登录OpenSSH2013年10月24日16:47 生成密钥对 我所知道的,有三种生成密钥对的工具,分别为GNU/Linux下的ssh-keygen命令、puttygen、SSH Secure Shell。 使用ssh-keygen生成密钥对 [root@ld365 ~]# ssh-keyg...
分类:其他好文   时间:2014-04-29 10:11:47    阅读次数:615
shell中判断文件或目录是否存在
可以通过man test来查看文档,下面的文章转自http://m.blog.csdn.net/blog/yuanjungogogo/9222875#!/bin/shmyPath="/var/log/httpd/"myFile="/var /log/httpd/access.log"# 这里的-x ...
分类:其他好文   时间:2014-04-29 09:27:45    阅读次数:446
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!