일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- SSH
- C
- C#
- 컨테이너
- LIST
- error
- windows forms
- pandas
- pytorch
- VS Code
- YOLO
- 기타 연주
- Linux
- OpenCV
- 핑거스타일
- Numpy
- label
- Visual Studio
- 프로그래머스
- 채보
- C++
- mysql
- pip
- Selenium
- 오류
- Python
- paramiko
- JSON
- ubuntu
- Docker
- Today
- Total
목록검색 (2)
기계는 거짓말하지 않는다
find command find(1) - Linux man page find(1) - Linux man page Name find - search for files in a directory hierarchy Synopsis find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression] Description This manual page documents the GNU version of find. GNU find searches the directory tree linux.die.net 다음은 간단한 사용 예이다. find "*.mp4" # 현재 경로의 모든 mp4 파일, 디렉터리 검색 find . -name "*.mp4" # 현재 경로와 현재..
명령 모드에서 사용 검색 명령어 설명 /string 현재 위치부터 파일 앞쪽으로 문자열(string) 탐색 ex) /찾을문자 후 Enter ?string 현재 위치부터 파일 뒤쪽으로 문자열(string) 탐색 n 다음 문자열 탐색 N 역방향으로 문자열 탐색 변경 - range 에 %를 입력하면 모든 범위로 설정 할 수 있음 명령어 설명 :s/string1/string2 커서가 위치한 줄에서만 string1을 string2로 바꿈 :s/string1/string2 범위 안의 모든 줄에 대해서 각 줄의 첫 번째 string1을 문자열 string2로 바꿈 :s/string1/string2/g 범위 안의 모든 줄의 모든 string1을 string2로 바꿈 :s/string1/string2/gc 범위 안의 모..