bash
-
shell script 기초 강의 정리카테고리 없음 2021. 8. 5. 21:34
1. Writing your first shell script A shell script is text file that contains a series of commands any work you can do on the command line can ba automated by a shell script day1.sh 파일을 아래처럼 만들어보자.#!/bin/bash echo "I don't have to be great to start, but I have to start to be great!" ./day1.sh 로 방금 만든 파일을 실행하면 아래같은 에러가 난다. zsh: permission denied: ./day1.sh 파일 실행 권한이 없기 때문인데, 아래 명령으로 실행 권한을 주자...