[shell script] C언어 방식의 for문 작성법
1578 단어 shell scriptshell script
스크립트에서는 이중 괄호를 이용해 for문을 사용할 수 있습니다.
스크립트에서는 수식을 계산할 때 또는 비교 조건문에서 등호를 사용하기 위해 이중 괄호
를 사용합니다.
for문에서도 역시 이중 괄호
를 사용하여 C언어 방식으로 사용할 수 있습니다.
$ cat test1
#!/bin/bash
for (( i = 0; i < 10; i++ ))
do
echo "The next number is $i"
done
$ ./test1
The next number is 0
The next number is 1
The next number is 2
The next number is 3
The next number is 4
The next number is 5
The next number is 6
The next number is 7
The next number is 8
The next number is 9
Author And Source
이 문제에 관하여([shell script] C언어 방식의 for문 작성법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@khyup0629/shell-script-C언어-방식의-for문-작성법저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)