码迷,mamicode.com
首页 >  
搜索关键字:find grep    ( 34568个结果
一个批量修改文件夹中文件名的命令
1. 只修改当前目录下的文件【root】#rename -s \.png \_iphone.png *这个是修改目录下 的所有文件名,加入一个后缀如: 1.png ->>> 1_iphone.png2. 递归修改当前目录下的所有子文件夹【root】#find ./ -name"*.png" | .....
分类:其他好文   时间:2014-06-23 07:40:53    阅读次数:193
Linux常用命令_(文件管理)
文件管理命令?基本命令:ls、cd、pwd、man?文件操作:touch、cp、rm、mv、ln、mkdir、rmdir、?文件查看:cat、more、less、head、tail?文件权限:chmod、chgrp、chown?文件搜索:which、whereis、grep、find、wc1、ls打...
分类:系统相关   时间:2014-06-22 23:58:30    阅读次数:447
grep相关的问题
假若目前有一个windows下拷贝过来的文件 favorite_songs(喜欢的歌曲单,内部是 CRLF 结尾的),现在还有一个文件 music_list(内部包含所有歌曲的路径,非 CRLF 结尾),现在想将所有的 favorite songs 拷贝到一个单独的 favorite_dir 目录。...
分类:其他好文   时间:2014-06-22 23:47:11    阅读次数:212
Leetcode:Minimum Path Sum 矩形网格最小路径和
Minimum Path Sum:Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along...
分类:其他好文   时间:2014-06-22 23:06:39    阅读次数:290
NYOJ353 3D dungeon 【BFS】
3D dungeon 时间限制:1000 ms  |  内存限制:65535 KB 难度:2 描述You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be fil...
分类:其他好文   时间:2014-06-22 22:13:18    阅读次数:223
写的一个split函数
vector strsplit(const string& str) { vector vec; string sstr1=str, sstr2=""; size_t np=0; while (sstr1!="") { size_t dt = sstr1.find(','); if (dt != string::npos) { sstr1 = str.substr(np...
分类:其他好文   时间:2014-06-22 18:06:11    阅读次数:205
系统清理——查找大文件
在系统中查找大文件的方法: 1. 统计当前目录的文件(或文件夹)大小,并按照从大到小的顺序排序      du -s /home/* | sort -nr      * -h已易读的格式显示指定目录或文件的大小      * -s选项指定对于目录不详细显示每个子目录或文件的大小 2. 查找大于100M的文件,并显示详细信息      find . -type f -size +...
分类:其他好文   时间:2014-06-22 17:58:51    阅读次数:185
LeetCode:Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2],...
分类:其他好文   时间:2014-06-22 17:07:52    阅读次数:166
坚持c++学习,真正掌握c++(3)
最近学习了c++primer中的第11章的泛型算法,这一章的基础是c++中的容器,但是泛型算法是独立于特定的容器的,这样的算法不会改变容器的大小,这样保证了不管是哪种类型的容器都可以同时调用同一种算法来实现操作。 首先介绍下这些常用的算法的头文件,比较常用的是algorithm,numeric和iterator,最先遇到的函数是find()函数,需要三个参数,前两个是一般的算法函数都需要的,是一...
分类:编程语言   时间:2014-06-22 16:57:43    阅读次数:277
SCOI2009生日快乐
竟然是搜索……囧还以为是什么神题…… 1 uses math; 2 var x,y:extended; 3 n:longint; 4 function find(x,y:extended;z:longint):extended; 5 var i:longint; 6 r1,r...
分类:其他好文   时间:2014-06-21 17:49:05    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!