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