★Linux★리눅스★/Linux★명령어★Ubuntu★command

grep 사용법 내가 원하는 키워드가 있는지 검색하기!!

내인생PLUS 2022. 3. 12. 21:52
728x90


grep -i "cfg" src/main.rs



❯ grep -i "cfg" src/main.rs
// #[cfg(not(target_os = "linux"))] // configuration
#[cfg(target_os = "linux")]
#[cfg(not(target_os = "linux"))]

main.rs 파일 안에
cfg 문구가 있으면
출력해줌. ㅋㅋ
대박


1분 59초에 나옴.
https://www.youtube.com/watch?v=rrB13utjYV4







grep 더 자세히 알아보기

Linux/Mac Terminal Tutorial:
The Grep❤️Command
- search Files and Directories for
- https://economiceco.tistory.com/m/12993

Linux/Mac Terminal Tutorial: The Grep Command - search Files and Directories for

https://youtu.be/VGgTmxXp7xQ 다른 grep 영상 https://youtu.be/2-3i42XXzek grep "Jane William" names.txt // names.txt 에서 Jane William검색하기 // 단어 안에 들어 있기만 하면 무조건 검색 // Jane willia..

economiceco.tistory.com












반응형