Vim Shortcuts
Vim Shortcuts Complete Guide: Secrets of Efficient Text Editing Navigation Basic Movement ^: Move to the first non-blank character of the line 0: Move to the absolute beginning of the line (...
Vim Shortcuts Complete Guide: Secrets of Efficient Text Editing Navigation Basic Movement ^: Move to the first non-blank character of the line 0: Move to the absolute beginning of the line (...
Javascript는 절차지향적인(c언어 등) 언어들과는 다르게 특정 코드의 연산이 끝나지 않아도 다음 코드를 먼저 실행하는 특성을 지닌다. console.log('Hello'); setTimeout(function () { console.log('Bye'); }, 3000); console.log('Hello Again'); //출력 결과...
Linux Log Files Log File Types Linux log files are located in the /var/log directory and are categorized into four main types: Application Logs Event Logs Service Logs System Logs /var/...
CentOS7 배포 방법 Visual Studio를 통해서 디버그 모드로 아무 이상이 없는지 먼저 확인부터 하고 배포를 시작합니다. 아무 이상이 없을경우 window power shell을 접속하여 본인이 배포하시기 원하는 폴더로 접근합니다. 폴더에 접근 후 dotnet publish 라는 명령어를 실행시킵니다. 그러면 publish된 ...
파일 생성 및 실행 권한 부여 $ touch shell_script_practice.sh // 파일 생성 $ vim shell_script_practice.sh // 쉘 스크립트 파일 편집기로 열기 $ chmod +x shell_script_practice.sh // 실행 권한 부여 기본 문법 스크립트 상단에 #I/bin/bash를 추가하고...
정렬하지 않고 유니크한 부분만 출력하기 $ awk '!x[$0]++ {print $0}' my_file.txt $ cat my_file.txt | awk '!x[$0]++' 정렬하면서 유니크한 부분 출력하기 $ cat my_file.txt | sort -u cat * | grep 의 환상 조합 $ grep -r -H "찾고자 하는 string"...
쉘 커맨드 창에 보이는 기호 분석 guest@linux:~$(#) $: normal user #: system administrator (root) guest - username linux - machine hostname ~ - current working directory ...
정규식 표현 설명 ^x 문자열이 x로 시작합니다. x$ 문자열이 x로 끝납니다. . 임의의 한 문자를 표현합니다. x* x가 0번 이상 반복합니다. ...
네트워크 설정 파일 열기 ifconfig를 통해 연결된 이더넷의 이름이 뭔지 확인합니다. vim /etc/sysconfig/network-scripts/ifcfg-[이더넷 이름] 그러면 다음과 같은 설정값들이 보일 것입니다. TYPE="Ethernet" PROXY_METHOD="none" BROWSER_ONLY="no" BOOTPR...
쉘 커맨드 창에 보이는 기호 분석 guest@linux:~$(#) $: normal user #: system administrator (root) guest - username linux - machine hostname ~ - current working directory ...