- 浏览: 235345 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
hnraysir:
必须登录评论下,谢谢。by elesos.com
分库和分表 -
化蝶自在飞:
命运使然.前生来世都注定了的.
贫穷是罪恶之源 -
Kidwind:
出现这样的错误ViewDoesNotExist at /con ...
django的jsCalendar的widget -
hanyh:
我的项目比较小,就直接写在views.py里面了。你出现的是什 ...
django的jsCalendar的widget -
Kidwind:
请问JsCalendarWidget应该放在哪个位置,我的是放 ...
django的jsCalendar的widget
http://johnmeister.com/CS/UNIX/FIND/find-usage.html
sudo find / -type f -name *.jpg -exec cp {} . \;
find . -type f -size +10000 -exec ls -al {} \;
find . -atime +1 -type f -exec mv {} TMP \; # mv files older then 1 day to dir TMP
find . -name "-F" -exec rm {} \; # a script error created a file called -F
find . -exec grep -i "vds admin" {} \;
find . \! -name "*.Z" -exec compress -f {} \;
find . -type f \! -name "*.Z" \! -name ".comment" -print | tee -a /tmp/list
find . -name *.ini
find . -exec chmod 775 {} \;
find . -user xuser1 -exec chown -R user2 {} \;
find . -name ebtcom*
find . -name mkbook
find . -exec grep PW0 {} \;
find . -exec grep -i "pw0" {} \;
find . -atime +6
find . -atime +6 -exec ll | more
find . -atime +6 -exec ll | more \;
find . -atime +6 -exec ll \;
find . -atime +6 -exec ls \;
find . -atime +30 -exec ls \;
find . -atime +30 -exec ls \; | wc -l
find . -name auth*
find . -exec grep -i plotme10 {};
find . -exec grep -i plotme10 {} \;
find . -ls -exec grep 'PLOT_FORMAT 22' {} \;
find . -print -exec grep 'PLOT_FORMAT 22' {} \;
find . -print -exec grep 'PLOT_FORMAT' {} \;
find . -print -exec grep 'PLOT_FORMAT' {} \;
find ./machbook -exec chown 184 {} \;
find . \! -name '*.Z' -exec compress {} \;
find . \! -name "*.Z" -exec compress -f {} \;
find /raid/03c/ecn -xdev -type f -print
find /raid/03c/ecn -xdev -path -type f -print
find / -name .ssh* -print | tee -a ssh-stuff
find . -name "*font*"
find . -name hpmcad*
find . -name *fnt*
find . -name hp_mcad* -print
find . -grep Pld {} \;
find . -exec grep Pld {} \;
find . -exec grep Pld {} \;
find . -exec grep PENWIDTH {} \; | more
find . -name config.pro
find . -name config.pro
find /raid -type d ".local_sd_customize" -print
find /raid -type d -name ".local_sd_customize" -print
find /raid -type d -name ".local_sd_customize" -ok cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
find /raid -type d -name ".local_sd_customize" -exec cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
find . -name xeroxrelease
find . -exec grep xeroxrelease {} \;
find . -name xeroxrelease
find . -name xeroxrelease* -print 2>/dev/null
find . -name "*release*" 2>/dev/null
find / -name "*xerox*" 2>/dev/null
find . -exec grep -i xeroxrelease {} \;
find . -print -exec grep -i xeroxrelease {} \;
find . -print -exec grep -i xeroxrelease {} \; > xeroxrel.lis
find . -exec grep -i xeroxrel {} \;
find . -print -exec grep -i xeroxrel {} \;
find . -print -exec grep -i xeroxrel {} \; | more
find /raid/03c/inwork -xdev -type f -print >> /raid/04d/user_scripts/prt_list.tmp
find . -exec grep '31.53' {} \;
find . -ls -exec grep "31/.53" {} \; > this.lis
find . -print -exec grep "31/.53" {} \; > this.lis
find . -print -exec grep 31.53 {} \; > this.lis
find . -exec grep -i pen {} /;
find . -exec grep -i pen {} \;
find . -print -exec grep -i pen {} \; | more
find . -exec grep -i pen {} \;
find . -atime +6 -exec ll | more \;
find . -atime +6 -exec ll \;
find . -atime +6 -exec ls \;
find . -atime +30 -exec ls \;
find . -atime +30 -exec ls \; | wc -l
find . \! -name '*.Z' -exec compress -f {} \;
find . -name 'cache*' -depth -exec rm {} \;
find . -name 'cache*' -depth -print | tee -a /tmp/cachefiles
find . -name 'cache[0-9][0-9]*' -depth -print | tee -a /tmp/cachefiles
find . -name 'hp_catfile' 'hp_catlock' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_catfile' -name 'hp_catlock' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_cat*' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_cat[fl]*' -depth -print | tee -a /tmp/hp.cats
find /raid -name 'hp_cat[fl]*' -depth -print
find . \! -name '*.Z' -exec compress -f {} \;
find . -name '*' -exec compress -f {} \;
find . -xdev -name "wshp1*" -print
find . -xdev -name "wagoneer*" -print
find . -name "xcmd" -depth -print
find /usr/contrib/src -name "xcmd" -depth -print
find /raid -type d -name ".local_sd_customize" -exec ls {} \;
find /raid -type d -name ".local_sd_customize" \
-exec cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
sudo find / -type f -name *.jpg -exec cp {} . \;
find . -type f -size +10000 -exec ls -al {} \;
find . -atime +1 -type f -exec mv {} TMP \; # mv files older then 1 day to dir TMP
find . -name "-F" -exec rm {} \; # a script error created a file called -F
find . -exec grep -i "vds admin" {} \;
find . \! -name "*.Z" -exec compress -f {} \;
find . -type f \! -name "*.Z" \! -name ".comment" -print | tee -a /tmp/list
find . -name *.ini
find . -exec chmod 775 {} \;
find . -user xuser1 -exec chown -R user2 {} \;
find . -name ebtcom*
find . -name mkbook
find . -exec grep PW0 {} \;
find . -exec grep -i "pw0" {} \;
find . -atime +6
find . -atime +6 -exec ll | more
find . -atime +6 -exec ll | more \;
find . -atime +6 -exec ll \;
find . -atime +6 -exec ls \;
find . -atime +30 -exec ls \;
find . -atime +30 -exec ls \; | wc -l
find . -name auth*
find . -exec grep -i plotme10 {};
find . -exec grep -i plotme10 {} \;
find . -ls -exec grep 'PLOT_FORMAT 22' {} \;
find . -print -exec grep 'PLOT_FORMAT 22' {} \;
find . -print -exec grep 'PLOT_FORMAT' {} \;
find . -print -exec grep 'PLOT_FORMAT' {} \;
find ./machbook -exec chown 184 {} \;
find . \! -name '*.Z' -exec compress {} \;
find . \! -name "*.Z" -exec compress -f {} \;
find /raid/03c/ecn -xdev -type f -print
find /raid/03c/ecn -xdev -path -type f -print
find / -name .ssh* -print | tee -a ssh-stuff
find . -name "*font*"
find . -name hpmcad*
find . -name *fnt*
find . -name hp_mcad* -print
find . -grep Pld {} \;
find . -exec grep Pld {} \;
find . -exec grep Pld {} \;
find . -exec grep PENWIDTH {} \; | more
find . -name config.pro
find . -name config.pro
find /raid -type d ".local_sd_customize" -print
find /raid -type d -name ".local_sd_customize" -print
find /raid -type d -name ".local_sd_customize" -ok cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
find /raid -type d -name ".local_sd_customize" -exec cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
find . -name xeroxrelease
find . -exec grep xeroxrelease {} \;
find . -name xeroxrelease
find . -name xeroxrelease* -print 2>/dev/null
find . -name "*release*" 2>/dev/null
find / -name "*xerox*" 2>/dev/null
find . -exec grep -i xeroxrelease {} \;
find . -print -exec grep -i xeroxrelease {} \;
find . -print -exec grep -i xeroxrelease {} \; > xeroxrel.lis
find . -exec grep -i xeroxrel {} \;
find . -print -exec grep -i xeroxrel {} \;
find . -print -exec grep -i xeroxrel {} \; | more
find /raid/03c/inwork -xdev -type f -print >> /raid/04d/user_scripts/prt_list.tmp
find . -exec grep '31.53' {} \;
find . -ls -exec grep "31/.53" {} \; > this.lis
find . -print -exec grep "31/.53" {} \; > this.lis
find . -print -exec grep 31.53 {} \; > this.lis
find . -exec grep -i pen {} /;
find . -exec grep -i pen {} \;
find . -print -exec grep -i pen {} \; | more
find . -exec grep -i pen {} \;
find . -atime +6 -exec ll | more \;
find . -atime +6 -exec ll \;
find . -atime +6 -exec ls \;
find . -atime +30 -exec ls \;
find . -atime +30 -exec ls \; | wc -l
find . \! -name '*.Z' -exec compress -f {} \;
find . -name 'cache*' -depth -exec rm {} \;
find . -name 'cache*' -depth -print | tee -a /tmp/cachefiles
find . -name 'cache[0-9][0-9]*' -depth -print | tee -a /tmp/cachefiles
find . -name 'hp_catfile' 'hp_catlock' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_catfile' -name 'hp_catlock' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_cat*' -depth -print | tee -a /tmp/hp.cats
find . -name 'hp_cat[fl]*' -depth -print | tee -a /tmp/hp.cats
find /raid -name 'hp_cat[fl]*' -depth -print
find . \! -name '*.Z' -exec compress -f {} \;
find . -name '*' -exec compress -f {} \;
find . -xdev -name "wshp1*" -print
find . -xdev -name "wagoneer*" -print
find . -name "xcmd" -depth -print
find /usr/contrib/src -name "xcmd" -depth -print
find /raid -type d -name ".local_sd_customize" -exec ls {} \;
find /raid -type d -name ".local_sd_customize" \
-exec cp /raid/04d/MCAD-apps/I_Custom/SD_custom/site_sd_customize/user_filer_project_dirs {} \;
发表评论
-
设计的解耦合
2010-10-26 15:37 1240一个项目要接收大量上传文件,简单的分为3层: 1,前端(Act ... -
RRD使用入门(一)
2010-10-21 14:08 0一个项目上线,要统计流量等数据。计划直接使用rrd来做. 一, ... -
在不真正了解一门东西前不要乱用
2010-02-04 10:12 938比如说nginx,如果没有真正去认真读完相关文档,认真的去测试 ... -
spinlock
2009-12-05 15:23 833spinlock is a lock where the th ... -
volatile busy wating
2009-12-05 15:14 756consequently C++, the keyword w ... -
source code
2009-12-05 14:01 778_LARGEFILE64_SOURCE #define _GN ... -
C保留字
2009-12-05 13:49 896原来只认为是基本的函数,库名字,今天看libc manual发 ... -
syslog-ng reload导致named pipe不可用
2009-12-02 10:28 0ssssssssssss -
shell 递归调用自己
2009-11-20 11:46 1033#!/bin/sh if test "$2&q ... -
ubuntu上使用gitweb
2009-11-06 10:36 2281step 1: apt-get install git ... -
第一次用git 和手册
2009-11-02 10:46 3096一,git clone git@xxx.xxx.xx:quar ... -
编译apache模块
2009-10-22 14:58 930以前编译安装的时候忘记了mod_rewrite hanyh@h ... -
security linux
2009-10-21 22:27 760Boot security ================= ... -
每个成熟的C语言软件都有自己的扩展库
2009-10-21 15:30 948无论apache,mysql,php都针对具体的需求,拥有自己 ... -
最大目录深度
2009-10-14 11:20 954#!/bin/sh count=0 while t ... -
write your own "who"
2009-10-12 17:59 854warning: incompatible implicit ... -
玩具程序和真实程序
2009-10-12 14:23 890一个简单的more程序实现代码不到100行 看linux下mo ... -
一个分布式框架高性能消息服务框架
2009-10-11 22:20 745http://www.spread.org/ 有时间可以研究 ... -
ext2/ext3 32000限制
2009-09-27 16:20 1641为什么有32000限制? ext2/ext3有此限制,xfs无 ... -
inotify使用
2009-09-27 10:43 821注意: There are race conditions ...
相关推荐
在这个例子中,我们将详细探讨`find_if`的使用以及如何在实际代码中应用它。 `find_if`函数通常在`<algorithm>`头文件中定义,它的基本语法如下: ```cpp template , class Predicate> InputIterator find_if...
Linux 中 find 命令的使用示例 find 命令是 Linux 中一个功能强大的命令,用于查找文件和目录。它可以根据文件的各种属性,如名称、权限、所有者、组、修改时间、访问时间、创建时间等来查找文件。 基本语法 find ...
08_driver.find查找元素示例.py08_driver.find查找元素示例.py08_driver.find查找元素示例.py08_driver.find查找元素示例.py08_driver.find查找元素示例.py08_driver.find查找元素示例.py08_driver.find查找元素示例...
下面将详细介绍`find`命令的基本语法、常用选项以及实际应用示例。 #### 基本语法 `find`命令的基本语法结构如下: ```bash find [路径] [表达式] ``` 或者更具体的格式为: ```bash find PATH OPTION [-exec ...
07_driver.page_source.find示例.py07_driver.page_source.find示例.py07_driver.page_source.find示例.py07_driver.page_source.find示例.py07_driver.page_source.find示例.py07_driver.page_source.find示例.py07...
在这个例子中,我们将深入探讨`find_if`以及如何使用谓词来搜索满足特定条件的元素。 首先,让我们了解`find_if`的基本用法。`find_if`的签名如下: ```cpp template , class Predicate> InputIterator find_if...
请注意,由于我们没有具体的 "findpeaks.m" 函数源代码,上述示例仅是基于标准 MATLAB `findpeaks` 函数的假设。实际使用时,你可能需要按照该子函数的文档或作者提供的说明来调用和配置参数。 在实际应用中,理解...
### Linux Find 命令使用手册详解 #### 概述 `find` 是一个功能强大的命令行工具,用于在Linux系统中的目录树中查找文件。它支持多种选项和表达式来帮助用户根据特定条件筛选出目标文件。此文档将详细介绍`find`...
在提供的`testFind.cpp`源文件中,可能会包含使用`find()`函数的实际示例,通过运行和分析代码,你可以更好地理解`find()`函数在实际编程中的应用。而`C++find().doc`文档则可能详细介绍了`find()`函数的使用细节、...
### UNIX find命令的使用 #### 一、概述 在UNIX系统中,`find`命令是一个极其强大的工具,用于在文件系统中查找文件。通过结合不同的选项和操作符,`find`命令可以执行复杂的搜索任务,比如按名称、类型、大小、...
这个脚本首先切换到`/dailybuild`目录,然后使用`find`命令找出5天前的子目录,将它们的路径存储在变量`files`中,最后遍历这个列表并使用`rm -rf`删除每个目录。 总结起来,这个技巧展示了如何结合`find`命令的...
其中,`findx`就是一个例子,它扩展了Windows DOS命令`find`的功能,提供了更为强大的文本搜索能力。`findx`命令的使用方式与Linux下的`find`命令非常接近,使得熟悉Linux操作的用户在Windows环境下也能便捷地进行...
### 二、find命令例子 1. 查找当前用户主目录下的所有文件: ```bash find ~ ``` 2. 查找具有特定权限的文件: ```bash find . -type f -readable -writable -group users -o -readable -group others ``` ...
结合提供的"PeakFinder"文件,这可能是一个包含示例代码、数据或结果的文件,用于演示如何使用`findpeaks`函数。通过研究这个文件,你可以看到`findpeaks`如何在实际问题中找到数据的显著特征,并了解如何根据具体...
例如,当普通用户尝试在 `/` 目录下使用 `find / -name httpd.conf` 进行搜索时,可能会遇到 "Permission denied" 的错误。这是因为普通用户没有权限访问某些目录。此时,可以使用 `sudo` 或者以 root 用户身份登录...
下面是一个简单的`find_package`使用示例,演示如何搜索`add.h`文件: ```cmake # CMAKE_SOURCE_DIR 是 CMakeLists.txt 所在的目录 # 在指定的目录 (${CMAKE_SOURCE_DIR}/include) 下查找 add.h 文件 find_...
"Linux中find常见用法示例" find 命令是 Linux 系统中一个非常强大的文件搜索工具,它可以根据不同的参数和选项来查找和处理文件下面将详细介绍 find 命令的常见用法示例: 1. 基本语法:find path -option [ -...
除了`-ctime`之外,`find`命令还提供了其他与时间相关的选项,例如`-atime`(访问时间)和`-mtime`(修改时间),这些选项的使用方法与`-ctime`类似,但分别针对文件的访问时间和修改时间。 - **按访问时间查找文件...
在本篇文章中,我们将详细探讨`List<T>`的`FindAll`方法,并通过四种不同的写法来演示如何使用这个功能来筛选满足特定条件的元素。`FindAll`方法用于在列表中找到符合指定条件的所有元素,返回一个新的`List<T>`实例...
标题中的“解决Cannot find Graphviz”意味着用户在尝试使用某个软件或工具时遇到了与Graphviz相关的错误。Graphviz是一款开源的图形绘制软件,主要用于自动布局图表,如流程图、网络图和UML图等。在Java开发环境中...