11
:(コロン)GNU Bashビルトインの目的は何ですか?
何もせず、コメントリーダーにすぎないが、実際には組み込みのシェルであるコマンドの目的は何ですか? スクリプトにコメントを挿入するよりも、呼び出しごとに約40%遅くなります。これは、おそらくコメントのサイズによって大きく異なります。それについて私が見ることができる唯一の考えられる理由はこれらです: # poor man's delay function for ((x=0;x<100000;++x)) ; do : ; done # inserting comments into string of commands command ; command ; : we need a comment in here for some reason ; command # an alias for `true' (lazy programming) while : ; do command ; …