find vs allocate

Dongsung Kim·2023년 1월 3일
0

linux tips

목록 보기
1/2

언제

어딘가에 SR folder 가 있을 텐데 못찾을 때
1. find | 매우 느림
2. allocate | updatedb 해야 함. indexing 되어 있어 매우 빠름

find in linux

현재 폴더부터 아래로 계속 찾아 가자. -r
-type f 는 파일 검색, -type d는 디렉토리 검색

-regex 는 case sensitive
-iregex 는 case insensitive


find . -type d -regex '.*SR.*'

find [path] -regex [regular_expression]

allocate in windows git bash

allocate 에는 directory 만 찾는 옵션이 없다고. !!! (SO 참고)

mkdir /c/Program\ Files/Git/usr/var; updatedb --localpaths='/c/'

Refs

profile
Pick one

0개의 댓글