2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

sedコマンドでの置換対象文字列にやたらと特殊文字が含まれている場合にめちゃめちゃハマったのでメモを残す

Posted at

sedコマンドでの置換対象文字列にやたらと特殊文字が含まれている場合にめちゃめちゃハマったのでメモを残す。
注目すべきは以下3点。

  1. sedコマンドの引数は特殊文字3種($`\)以外をエスケープするダブルクォートを使用すること
  2. 特殊文字3種($`\)のエスケープにはバックスラッシュを使用すること
  3. ダブルクォートで囲まれた文字列の内部でダブルクォートを使用する場合にはバックスラッシュでエスケープすること
#!/bin/bash

# note <RTF.list>
# s3://mybucket-01/cloudwatch/env01/RTF/`date -d '${target_date}' +"%Y%m"`/,_aws_RTF_errorlog_`date -d '${target_date}' +"%Y%m%d"`

listfile=/opt/usrshell/conf/RTF.list

while read line
do
    echo ${line}
    target_line=$(echo ${line} | sed "s/\`date -d '\${target_date}' +\"%Y%m\"\`/hogehoge/")
    echo ${target_line}
done < ${listfile}
2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?