1. ホーム
  2. bash

[解決済み] 複数行のコマンド内のBashスクリプトをコメントアウトする

2022-04-20 04:17:04

質問

スクリプトから次の行の各行をコメントするにはどうしたらよいでしょうか。

cat ${MYSQLDUMP} | \
sed '1d' | \
tr ",;" "\n" | \
sed -e 's/[asbi]:[0-9]*[:]*//g' -e '/^[{}]/d' -e 's/""//g' -e '/^"{/d' | \
sed -n -e '/^"/p' -e '/^print_value$/,/^option_id$/p' | \
sed -e '/^option_id/d' -e '/^print_value/d' -e 's/^"\(.*\)"$/\1/' | \
tr "\n" "," | \
sed -e 's/,\([0-9]*-[0-9]*-[0-9]*\)/\n\1/g' -e 's/,$//' | \
sed -e 's/^/"/g' -e 's/$/"/g' -e 's/,/","/g' >> ${CSV}

というようなコメントを付けようとすると

cat ${MYSQLDUMP} | \ # Output MYSQLDUMP File

得ることができる。

#: not found

ここにコメントすることは可能ですか?

解決方法は?

これは多少のオーバーヘッドを伴いますが、技術的にはあなたの質問に答えることができます。

echo abc `#Put your comment here` \
     def `#Another chance for a comment` \
     xyz, etc.

そして、特にパイプラインについては、オーバーヘッドのないクリーンなソリューションがあります。

echo abc |        # Normal comment OK here
     tr a-z A-Z | # Another normal comment OK here
     sort |       # The pipelines are automatically continued
     uniq         # Final comment

Stack Overflowの質問を参照 複数行のコマンドの行間コメントの付け方 .