<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://valley.egloos.com/rss/style/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>이글루스 'find' 태그 최근글</title>
		<link>http://valley.egloos.com/tag/find</link>
		<description>find</description>
		<language>ko</language>
		<pubDate>Thu, 24 May 2012 18:06:59 +0900</pubDate>
		<generator>Egloos</generator>
		<item>
	<title><![CDATA[하위 directory에 identify 명령하기]]></title>
	<link>http://always19.egloos.com/2867952</link>
	<guid>http://always19.egloos.com/2867952</guid>
	<description>
	<![CDATA[ 
     find &amp;lt;directory&amp;gt; -type f -name &quot;*.jpg&quot; -mmin -20 | xargs identify  원하는 directory 아래 jpg 파일 중 20분 안에 수정된 것들에 대해imagemagick identify 명령을 실행시키기.      Another use of xargs is illustrated below.  This command will efficiently remove all files named core from your system (provided you run the command as root of course):find / -name core | xargs /bin/rm -ffind / -name core -exec /bin/rm -f '{}'	]]>
	</description>
	<pubDate>Thu, 24 May 2012 18:06:59 +0900</pubDate>
	<dc:creator><![CDATA[공부가 본업.]]></dc:creator>
</item>
<item>
	<title><![CDATA[find 명령어]]></title>
	<link>http://anti1346.egloos.com/5094861</link>
	<guid>http://anti1346.egloos.com/5094861</guid>
	<description>
	<![CDATA[ 
0 2 * * * find /var/spool/clientmqueue -ctime +30 -exec rm -f {} \; 생성된지 30일 이상 된 파일만 삭제	]]>
	</description>
	<pubDate>Tue, 27 Mar 2012 11:05:33 +0900</pubDate>
	<dc:creator><![CDATA[변군이글루]]></dc:creator>
</item>
<item>
	<title><![CDATA[find 명령어 사용 설명서 (linux command)]]></title>
	<link>http://kwontaeun.egloos.com/2919251</link>
	<guid>http://kwontaeun.egloos.com/2919251</guid>
	<description>
	<![CDATA[ 
linux 에서 사용하는 명령어 중에서 find 라는 명령어가 있다.이것은 명령어 이름 처럼 이것저것을 찾을 수 있는 명령이다.  find &amp;lt;대상 디렉토리&amp;gt; &amp;lt;검색 조건&amp;gt; &amp;lt;처리방법&amp;gt;  검색 종류-name filename 		 filename 파일 이름으로 찾는다.		 -user username 		 user이름으로 찾는다.					 -group groupname 	 group 이름으로 찾는다.				 -perm nnn 			 파일 권한이 nnn인 파일을 찾는다. (ex. -perm 755)  -type x 				 파일 타입이 x인 파일들을 찾는다.	 ( f : 일반파일, b : 블록 특수파일, d: 디렉토리, l : 심볼릭 링크 등. )  -atime +n 			 acce	]]>
	</description>
	<pubDate>Wed, 14 Mar 2012 23:10:21 +0900</pubDate>
	<dc:creator><![CDATA[태언's]]></dc:creator>
</item>
<item>
	<title><![CDATA[[Linux] 검색]]></title>
	<link>http://leopit.egloos.com/2285863</link>
	<guid>http://leopit.egloos.com/2285863</guid>
	<description>
	<![CDATA[ 
find, grep, egrep  #grep -v &quot;200.0.0.1&quot; messages | grep -v &quot;domain.com&quot; &amp;gt; messages.temp #grep -i -l &quot;찾는 문자열&quot; * -r 2 &amp;gt; /dev/null - 대소문자 구분 X #find . -exec grep -i -l &quot;찾는문자열&quot; {} \; 2&amp;gt; /dev/null 한글, 영어, 대소문자 안가림egrep '(pattern1|pattenr2)' file.txtfind / -name 'et*' -type d (d:디렉토리) find / -name 'et*' -type f (f:파일) find / -iname 파일명 (대소문자구분X) find / -user &quot;사용자ID&quot; -print - 특정사용자 소유의 파일수정날짜로 찾	]]>
	</description>
	<pubDate>Thu, 01 Mar 2012 22:07:42 +0900</pubDate>
	<dc:creator><![CDATA[leopit]]></dc:creator>
</item>
<item>
	<title><![CDATA[링크 파일, 검색 명령어]]></title>
	<link>http://IS10.egloos.com/494325</link>
	<guid>http://IS10.egloos.com/494325</guid>
	<description>
	<![CDATA[ 
ln [원본파일명] [링크파일명]ln [-s] [원본파일명] [링크파일명]링크 파일은 하드 링크파일과 심볼릭 링크파일이 있다. 하드 링크파일은 원본파일과 inode를 공유한다. 하드 링크파일은 생성되거나 삭제되면 링크파일의 수가 증가하거나 감소한다. 반면에 원본파일을 가리키는 데이터 블록을 가지기 때문에 독립적인 inode를 갖는다. 윈도우의 바로가기 아이콘과 기능이 유사하다.  원본파일의 허가권을 변경하면 하드 링크파일의 허가권도 함께 변경되지만 심볼릭 링크파일은 변경되지 않는다. 반대로 심볼릭 링크 파일의 허가권을 변경하면 해당 파일이 가리키는 원본파일과 그 원본파일의 하드 링크파일도 허가권이 변경된다. 물론 심볼릭 링크 파일의 소유권도 변경시 원본파일과 그 하드 링크파일의 소유권이 바뀐다. 심볼릭 링크	]]>
	</description>
	<pubDate>Tue, 21 Feb 2012 05:06:04 +0900</pubDate>
	<dc:creator><![CDATA[Computer, etc.]]></dc:creator>
</item>
<item>
	<title><![CDATA[파일 찾기 find 명령어]]></title>
	<link>http://pangru.egloos.com/1073960</link>
	<guid>http://pangru.egloos.com/1073960</guid>
	<description>
	<![CDATA[ 
모든 디렉토리를 검색해서 inittab 파일이 어디있는지 찾아 보겠습니다.     find / -name inittab -print          find -&amp;gt; 명령어                 /    -&amp;gt; 찾기 시작 위치                 -name    -&amp;gt; 파일 이름으로 검색                 inittab   -&amp;gt; 찾고자하는 파일 이름                 -print    -&amp;gt; 찾은 결과를 화면에 출력  	]]>
	</description>
	<pubDate>Wed, 28 Dec 2011 12:37:54 +0900</pubDate>
	<dc:creator><![CDATA[pangru]]></dc:creator>
</item>
<item>
	<title><![CDATA[하위폴더및 파일명 일괄변경]]></title>
	<link>http://genes1s.egloos.com/2817778</link>
	<guid>http://genes1s.egloos.com/2817778</guid>
	<description>
	<![CDATA[ 
디렉토리find ./ -type d -exec chmod 775 {} \;: 현재 디렉토리의 하위 모든 디렉토리의 권한을 755(rwxr-x-rx)로 바꿈. find ./ -type d -exec chown root:root {} \; :현재 디렉토리의 하위 모든 디렉토리의 소유자를 root:root로 바꿈  파일 find ./ -type f -exec chmod 664 {} \; : 현재 디렉토리의 하위 모든 파일의 권한을 644(rwrw-rw-)로 바꿈.  find ./ -type f -exec chown root:root {} \; : 현재 디렉토리의 하위 모든 파일의 소유자를 root:root로 바꿈.   	]]>
	</description>
	<pubDate>Tue, 08 Nov 2011 17:32:35 +0900</pubDate>
	<dc:creator><![CDATA[Good mind]]></dc:creator>
</item>
<item>
	<title><![CDATA[[BASH] find로 특정 폴더에 있는 폴더목록 출력]]></title>
	<link>http://mnjp.egloos.com/229210</link>
	<guid>http://mnjp.egloos.com/229210</guid>
	<description>
	<![CDATA[ 
Shell script 를 작성하다가 특정폴더에 있는 폴더 목록을 배열로 저장하고 싶었다.  그래서 처음엔     for j in `find /home/test/ -type d -maxdepth 1 -name 'test*'`  do      echo $j      ...  done  이렇게 하면 당연히 /home/test/ 폴더 내부에 있는 최상위 폴더 중에 test로 시작하는 폴더들이 하나씩 출력될 것이라 생각했는데  이게 왠걸? 전체폴더가 한번에 다 출력되고 종료가 되는것이었다. (loop문이 한번만 돌았다.)    찾아보니 조금만 수정하니 해결이 되었다.    for j in `find /home/test/ -type d -maxdepth 1\( -iname 'test*' \);`  do      ec	]]>
	</description>
	<pubDate>Fri, 28 Oct 2011 18:00:01 +0900</pubDate>
	<dc:creator><![CDATA[Muscle &amp;amp; Java Programming (M&amp;amp;JP)]]></dc:creator>
</item>
<item>
	<title><![CDATA[Linux find]]></title>
	<link>http://katalog.egloos.com/4637947</link>
	<guid>http://katalog.egloos.com/4637947</guid>
	<description>
	<![CDATA[ 
사용예제현재 폴더에서 *.h, *.cpp 찾기find . -name *.h -o -name *.cppcpp file을 찾아 grep까지 실행하기find . -name *.cpp | xargs grep &quot;string&quot;유닉스 시스템에서 어떤 큰 화일이 시스템을 소비하는지 알고 싶으세요? 그렇다면 아래와 같이 입력해보세요. 큰 화일이 sort되어서 나온답니다.find /var -mount -ls -xdev | /usr/bin/sort -nr +6 | more또 다른 예로 매주 일요일 새벽 2시에 access한 날짜가 2일 이상인 파일을 /tmp 에서 지우려면…0 2 * * 0 find /tmp -atime +2 -exec rm {} ;기타 예제자신의 홈 디렉토리에서 확장자가 '.txt'인 파일을 찾을 경우 $ f	]]>
	</description>
	<pubDate>Mon, 24 Oct 2011 16:26:06 +0900</pubDate>
	<dc:creator><![CDATA[루오니의 집]]></dc:creator>
</item>
<item>
	<title><![CDATA[MFC find process by exe name]]></title>
	<link>http://katalog.egloos.com/4636851</link>
	<guid>http://katalog.egloos.com/4636851</guid>
	<description>
	<![CDATA[ 
MFC find process by exe name  참고사이트http://www.physiology.wisc.edu/ravi/Software/findproc/     #include &amp;lt;windows.h&amp;gt;#include &amp;lt;tlhelp32.h&amp;gt;#include &amp;lt;iostream.h&amp;gt; int FIND_PROC_BY_NAME(const char *); int main(int argc, char *argv[]){//  Check whether a process is currently running, or not    char szName[100]=&quot;notepad.exe&quot;;   // Name of process to find    int iRes;     iRes=FIND_PROC_BY	]]>
	</description>
	<pubDate>Fri, 21 Oct 2011 17:20:24 +0900</pubDate>
	<dc:creator><![CDATA[루오니의 집]]></dc:creator>
</item>
<item>
	<title><![CDATA[MFC find process by name]]></title>
	<link>http://katalog.egloos.com/4636849</link>
	<guid>http://katalog.egloos.com/4636849</guid>
	<description>
	<![CDATA[ 
MFC find process name by createtoolhelp32snapshot  추가로 참고할 사이트http://www.physiology.wisc.edu/ravi/Software/findproc/CreateToolhelp32Snapshot() 와 Process32First(), Process32Next() 를 사용하여 형재 실행중인 프로세서들을 확인한다    - 사용방법 -#include &amp;lt;Windows.h&amp;gt;#include &amp;lt;tlhelp32.h&amp;gt; //CreateToolhelp32Snapshot() 를 사용하기 위한 해더 포함   int main(){ HANDLE hProcess = NULL; PROCESSENTRY32 pe32 = {0};   hProcess = Create	]]>
	</description>
	<pubDate>Fri, 21 Oct 2011 17:16:59 +0900</pubDate>
	<dc:creator><![CDATA[루오니의 집]]></dc:creator>
</item>
<item>
	<title><![CDATA[파일내용 찾기]]></title>
	<link>http://ascendo.egloos.com/2785645</link>
	<guid>http://ascendo.egloos.com/2785645</guid>
	<description>
	<![CDATA[ 
find . -exec grep -l is_convertible {} \;	]]>
	</description>
	<pubDate>Wed, 10 Aug 2011 00:00:57 +0900</pubDate>
	<dc:creator><![CDATA[Imagine a Place ... Where Everything Possible...]]></dc:creator>
</item>
<item>
	<title><![CDATA[[엑셀] find함수로 뜯어내기(추출)]]></title>
	<link>http://tmt313.egloos.com/2182554</link>
	<guid>http://tmt313.egloos.com/2182554</guid>
	<description>
	<![CDATA[ 
<img 
				src="http://thumb.egloos.net/100x76/http://pds22.egloos.com/pds/201108/17/28/a0072528_4e4a97d64ebb0.jpg"  
				alt="[엑셀] find함수로 뜯어내기(추출)" 
				width="100px"  
				height="76pxpx"
				align="left"
				style="border:1px solid #DDDDDD;margin:0 10px 10px 0px;"
				/> find함수로 단어나 문장을 뜯어내기(추출)  예를들어 A1셀 안에,  &amp;lt;title&amp;gt;&amp;lt;![CDATA[ 아이폰4 갤럭시S2 둘중에 뭐가 좋을가요?? ]]&amp;gt;&amp;lt;/title&amp;gt;  이라는 문장이 들어있고, 이런식의 데이터가 줄줄이 계속된다면,            &quot;아이폰4 갤럭시S2 둘중에 뭐가 좋을가요??&quot; 이라는 문장만 뜯어내고자 하는경우,  find함수로 &quot; [&quot; 의 위치값와 &quot; ]&quot;의 위치값을 찾아내어 mid함수로 그 사이에 있는 문자열을 뜯어내면 된다.  &quot;[ &quot;의 위치를 알아내려면, 다음의 함수를, =FIND(&quot;[ &quot;,A1)&quot;[ &quot;의 위치를 알아내려면, 다음의 함수를, =FIND(&quot; ]&quot;,A1)  mid함수를 응용하여 그 둘 사이의 글자들을 뜯어내려면, 다음처럼, =MID(A	]]>
	</description>
	<pubDate>Tue, 09 Aug 2011 15:24:52 +0900</pubDate>
	<dc:creator><![CDATA[tomato313]]></dc:creator>
</item>
<item>
	<title><![CDATA[리눅스 find 명령어]]></title>
	<link>http://hyunki1019.egloos.com/20276</link>
	<guid>http://hyunki1019.egloos.com/20276</guid>
	<description>
	<![CDATA[ 
find: 지정된 경로로 주어진 조건에 따라 파일을 찾고, 그 경로를 보여줌root에서 접근 권한을 제한한 파일이나 디렉토리에 관해서는 &quot; 허가 거부됨&quot; 이라는메세지가 뜨고 찾지를 못함 (경로를 지정하지 않으면 현재 디렉토리부터임)1. 사용법find [경로] options e-pression!2. 옵션들-name : 이름을 기준으로 ...-perm : 퍼미션을 기준으로...-gruop: 해당그룹 소유의 파일이나 디렉토리를 찾을때-user : 해당 소유자의 파일이나 디렉토리를 찾을때-atime n : n일 이전에 엑세스한 파일을 찾을때-ctime n : n일 이전에 변경된 파일을 찾을때-mtime n : n일 이전에 수정된 파일을 찾을때-exec : 찾아진 파일등과 연계하여 명령을 내리게 하는 옵션사용하기위해	]]>
	</description>
	<pubDate>Thu, 14 Jul 2011 14:38:00 +0900</pubDate>
	<dc:creator><![CDATA[내가 관심있는 모든 것들..!!]]></dc:creator>
</item>
<item>
	<title><![CDATA[[OSX] 한글명의 파일이름 검색 문제]]></title>
	<link>http://mcchae.egloos.com/10686522</link>
	<guid>http://mcchae.egloos.com/10686522</guid>
	<description>
	<![CDATA[ 
일단 우분투에서는   $ find . | grep 시크릿   과 같이 명령을 주면 파일 이름 중에 &quot;시크릿&quot;이 들어 있는 것을 출력합니다.  하지만 똑같은 명령을 OSX에서의 터미널에서 해 보시면 출력이 되지 않을 것입니다.어~~??? 영문은 되는데 왜 한글은 안 되지???궁금증이 생겨 한번 살펴보았습니다.  일단 현재 터미널 인코딩을 살펴보니,  $ env | grep LANGLANG=ko_KR.UTF-8  이렇게 UTF-8 이라고 나오네요.  일단 터미널에 트정 폴더에 들어가서,  $ find . | tail -n 1 &amp;gt; f1.txt$ cat f1.txt./컴관련/해킹/해킹도우미/해킹도우미_2.iso  (위의 것은 단지 예시 입니다~ ^^)  이제 위의 것을 똑같이 copy &amp;amp; paste 하	]]>
	</description>
	<pubDate>Fri, 01 Apr 2011 20:04:40 +0900</pubDate>
	<dc:creator><![CDATA[지훈현서]]></dc:creator>
</item>
	</channel>
</rss>

