logo

배쉬 댓글

이 주제에서는 Bash 스크립트 파일에 주석을 삽입하는 방법을 이해합니다.

주석은 모든 프로그래밍 언어에서 필요한 부분입니다. 이는 코드나 함수의 사용법을 정의하는 데 사용됩니다. 주석은 프로그램의 가독성을 높이는 데 도움이 되는 문자열입니다. Bash 스크립트 파일에서 명령을 실행할 때 실행되지 않습니다.

롬이 뭐야?

Bash 스크립트는 다른 프로그래밍 언어와 마찬가지로 두 가지 유형의 주석을 지원합니다.

  • 한 줄 주석
  • 다중/여러줄 주석

Bash 한 줄 주석

Bash에서 한 줄 주석을 작성하려면 다음을 사용해야 합니다. 해시(#) 댓글 시작 부분의 기호. 다음은 명령 사이에 한 줄 주석이 포함된 Bash 스크립트의 예입니다.

배시 스크립트

 #!/bin/bash #This is a single-line comment in Bash Script. echo 'Enter your name:' read $name echo #echo output, its also a single line comment echo 'The current user name is $name' #This is another single line comment 

Bash 콘솔 보기

위 스크립트는 Bash 콘솔에서 다음 이미지와 같습니다.

인공 신경망
배쉬 댓글

산출

이름을 javatpoint로 입력하면 출력은 다음과 같습니다.

배쉬 댓글

여기서는 명령어 실행이 진행되는 동안 코멘트가 무시되는 것을 명확히 알 수 있다.

Bash 여러 줄 주석

Bash 스크립트에 여러 줄 주석을 삽입하는 방법에는 두 가지가 있습니다.

문자를 문자열로 변환하는 방법
  • bash 스크립팅에서 주석을 다음과 같이 묶어서 여러 줄의 주석을 작성할 수 있습니다. <그리고 논평 .
  • (: ')와 작은따옴표(') 사이에 주석을 묶어 여러 줄 주석을 작성할 수도 있습니다.

여러 줄 주석의 두 가지 방법을 이해하는 데 도움이 되는 다음 예를 읽어보세요.

방법 1:

배시 스크립트

땅콩 대 땅콩
 #!/bin/bash &lt;<comments this is the first comment second third comments echo 'hello world' < pre> <p> <strong>Bash Console View</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/21/bash-comments-3.webp" alt="Bash Comments"> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/21/bash-comments-4.webp" alt="Bash Comments"> <p> <strong>Method 2:</strong> </p> <p> <strong>Bash Script</strong> </p> <pre> #!/bin/bash : &apos; This is the first comment This is the second comment This is the third comment &apos; echo &apos;Hello World&apos; </pre> <p> <strong>Bash Console View</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/21/bash-comments-5.webp" alt="Bash Comments"> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/21/bash-comments-6.webp" alt="Bash Comments"> <h2>Conclusion</h2> <p>In this topic, we discussed how to insert a single line and multi-line comments in Bash Script file.</p> <hr></comments>

Bash 콘솔 보기

배쉬 댓글

산출

배쉬 댓글

결론

이 주제에서는 Bash 스크립트 파일에 한 줄 주석과 여러 줄 주석을 삽입하는 방법에 대해 설명했습니다.