★Linux★리눅스★
-
grep 사용법 내가 원하는 키워드가 있는지 검색하기!!★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 3. 12. 21:52
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/12..
-
Netstat)_ Monitoring Network Status With the netstat Command★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 3. 8. 14:27
https://docs.oracle.com/cd/E18752_01/html/816-4554/ipconfig-142.html Monitoring Network Status With the netstat Command - System Administration Guide: IP Services Monitoring Network Status With the netstat Command The netstat command generates displays that show network status and protocol statistics. You can display the status of TCP, SCTP, and UDP endpoints in table format. You can also displa..
-
mkdir -p 옵션의 의미 make directory★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 3. 8. 13:01
https://studyingazae.tistory.com/204 [Linux] 리눅스 mkdir 명령어 - 폴더 만들기, 폴더 생성하기 리눅스에서 폴더를 만드는 명령어인 mkdir에 대해 알아보겠습니다. mkdir은 make directory의 줄임말입니다. mkdir [옵션] [디렉토리명] 옵션의 종류 아래와 같은 옵션이 있지만 보통 -p를 주로 사용한다. studyingazae.tistory.com