블로그
- Git 최초 설정 Git Bash git config --global user.name "원하는이름" git config --global user.email "이메일" 2.
- 리눅스 기본 쉘 명령어 echo "텍스트" 터미널에 텍스트 출력 echo `커맨드` 쉘 커맨드의 결과를 출력 ( ` : 키보드에서 1 왼쪽에 있는 키) vi [파일명] vim 편집기로 파일 열기, 작성 bash
- [Bash] 여러 노드로 ping check script 이번에는 ping check script를 bash버전으로 짜보았습니다. 이 코드에서 중요한 포인트 4가지만 확인하겠습니다. 1. PING_NODE 변수에 대상 IP들을 배열하였습니다. 2. for 문을 이용하여 등록된 배열을 Loop하였습니다. 3. ping 결과값을 /dev/nul
- Synology DownloadStation IP차단 /bin/bash set -euo pipefail BLOCKLIST_URL='https://list.iblocklist.com/?
- Git 사용법 간단하게 배워보자! CHAPTER2 포스팅 및 유튜브 - CHAPTER1: Git, GitHub 소개 https://blog.naver.com/lstarrlodyl/222284335847 - CHAPTER2: Git Bash https://youtu.be/cagXfvE2e1A - CHAPTER3: Git Fork // youtube 업로드 예정: 2021.04.06 Git Bash - Git branch
- Git 사용법 간단하게 배워보자! CHAPTER3 포스팅 및 유튜브 - CHAPTER1: Git, GitHub 소개 https://blog.naver.com/lstarrlodyl/222284335847 - CHAPTER2: Git Bash
- alias로 명령어 약자 사용하기 >>> >>> print("Hello Bash alias") Hello Bash alias >>> 출처: https://devopsnet.tistory.com
- Python - Bash scripting When we want to access the value of a variable in bash, we need to prefix the name of the variable with
- While/for loops in bash script - while loop : to increment the value of the variable N, we're using a bash construct of double parentheses that lets us do arithmetic operations with our variables. - When using while loops and bash scripts,
- Git - Undoing things Especially if we use a command like git add star, where the star is a file glob pattern used in Bash