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 |
Tags
- 웹디자인
- 제이쿼리
- plugin
- 튜닝
- 쇼핑몰
- 홈페이지
- 웹에이전시
- 사이트제작
- PHP
- 웹디자이너
- 홈페이지구축
- 플러그인
- 홈페이지제작
- 웹퍼블리셔
- CSS
- 고도몰
- 개발자
- 쇼핑몰제작
- 워크식스
- 커스터마이징
- 쇼핑몰구축
- 웹개발자
- 3D프린터
- work6.kr
- jQuery Plugin
- JQuery
- 프로그래머
- 웹퍼블리싱
- 포트폴리오
- 안드로이드
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 |