Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 쇼핑몰
- CSS
- JQuery
- 튜닝
- 웹디자인
- 홈페이지제작
- 웹개발자
- 홈페이지구축
- PHP
- 사이트제작
- 3D프린터
- 고도몰
- 커스터마이징
- 쇼핑몰제작
- 쇼핑몰구축
- 안드로이드
- 플러그인
- 웹디자이너
- plugin
- 포트폴리오
- 웹퍼블리셔
- work6.kr
- 개발자
- 프로그래머
- 웹퍼블리싱
- 제이쿼리
- 홈페이지
- jQuery Plugin
- 워크식스
- 웹에이전시
Archives
- Today
- Total
그냥 개발자 블로그
[Linux] Search by contents of file 본문
It is useful to use a terminal for web development.
IDE can do things you can not do.
For example, you might want to look for a file that contains either a variable name or a function name.
$ grep -r 'apple' ./*
Interpreting the above command means "search for files containing the word apple in all subdirectories including the current path".
From now on, development will be accelerated.
copyright (c) 2017 워크식스
'프로그래밍팁 > linux' 카테고리의 다른 글
[워크식스] 라즈베리파이3 OS설치 (라즈비안 LITE) (0) | 2017.09.18 |
---|---|
[Linux] Virtual host using the port for centos7 (0) | 2017.06.27 |
[Linux] Leave a crontab run log (0) | 2017.06.23 |
[Linux] 서버에서 파일 내용으로 검색하기 (0) | 2017.06.07 |
cron(crontab) 실행 로그 남기기2 (0) | 2017.05.21 |