기본 Bash 스크립팅
Bash is a command language interpreter. It is widely available on various operating systems and is a default command interpreter on most GNU/Linux systems. The name is an acronym for the ‘Bourne-Again SHell’.
목차
코멘트
# Single line comment
: '
This is a
multi line
comment
'
변수
#!/usr/bin/env bash
NAME="John"
echo "Hello $NAME!"
기능
get_name() {
echo "John"
}
echo "You are $(get_name)"
조건부
if [[ -z "$string" ]]; then
echo "String is empty"
elif [[ -n "$string" ]]; then
echo "String is not empty"
fi
루프
for i in /etc/rc.*; do
echo $i
done
for ((i = 0 ; i < 100 ; i++)); do
echo $i
done
for i in {1..5}; do
echo "Welcome $i"
done
실행
Make your bash script executable by running this command.
sudo chmod +x script.sh
./script.sh
Reference
이 문제에 관하여(기본 Bash 스크립팅), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tonnss/basic-bash-scripting-2a37텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)