"Find"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
(새 문서: * 모든 실행파일 찾기 일단 file * | grep excutable 이 제일 간단함. find명령으로는 find . -depth 1 -perm -u+x ! -type d)
 
잔글
1번째 줄: 1번째 줄:
 
* 모든 실행파일 찾기
 
* 모든 실행파일 찾기
일단 file * | grep excutable 이 제일 간단함. find명령으로는
+
일단 file * | grep executable 이 제일 간단함. find명령으로는
 
  find . -depth 1 -perm -u+x ! -type d
 
  find . -depth 1 -perm -u+x ! -type d

2011년 5월 19일 (목) 19:22 판

  • 모든 실행파일 찾기

일단 file * | grep executable 이 제일 간단함. find명령으로는

find . -depth 1 -perm -u+x ! -type d