● 기본 설정 2023.03.27 - [분류 전체보기] - [Shell Programming] 시작하기 [Shell Programming] 시작하기 》 Linux 명령어로 프로그래밍 코드 짜기 》 반복적인 작업 자동화 가능 ● 실행 # 실행 sh [file name]# sh ex01.sh # 권한 주기 chmod 755 [file name] ● 변수 》 변수명=값 (띄어쓰기 금지) 》 변수명=`명령어` alsrudalsrudalsrud.tistory.com [ 실습1 ] ● 접속하려는 IP 에 한 번씩 접속 필요 ssh [ip] ● commands01.sh #!/bin/bash cat /etc/hostname df -h | grep /dev/mapper/cs-root free ● servers.sh #!..