このトピックでは、Bash スクリプト ファイルにコメントを挿入する方法を理解します。
コメントはあらゆるプログラミング言語に必要な部分です。これらは、コードまたは関数の使用法を定義するために使用されます。コメントは、プログラムを読みやすくする文字列です。これらは、Bash スクリプト ファイル内のコマンドを実行するときには実行されません。
cmからフィートとインチ
Bash スクリプトは、他のプログラミング言語と同様に、2 種類のコメントをサポートします。
- 一行コメント
- 複数/複数行のコメント
Bash の単一行コメント
bash で 1 行のコメントを記述するには、次を使用する必要があります。 ハッシュ(#) コメントの先頭にある記号。以下は、コマンド間に 1 行のコメントが含まれる Bash スクリプトの例です。
Bash スクリプト
Javaの擬似コード
#!/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 として入力すると、出力は次のようになります。
メインメソッドJava
ここでは、コマンドの実行中にコメントが無視されることが明確にわかります。
Bash 複数行コメント
bash スクリプトに複数行のコメントを挿入するには、次の 2 つの方法があります。
- bash スクリプトで複数行のコメントを記述するには、コメントを次の行で囲みます。 <
そして コメント 。 - コメントを (: ') と一重引用符 (') で囲んで、複数行のコメントを記述することもできます。
複数行コメントの両方の方法を理解するのに役立つ次の例を読んでください。
方法 1:
文字列とJava
Bash スクリプト
#!/bin/bash <<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 : ' This is the first comment This is the second comment This is the third comment ' echo 'Hello World' </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 スクリプト ファイルに単一行および複数行のコメントを挿入する方法について説明しました。