Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sedを使用してテキストを置き換えようとしていますが、次のエラーが発生します。
[root@server3 ~]# echo "{"playlist":[" | sed 's#{"playlist":[#{"playlist":[{"comment":" text 1","playlist":[#' sed: -e expression #1, char 63: unterminated `s' command
[文字リストを開始しようとしていると sed が認識しないように、パターン内のをエスケープする必要があります。
[
echo "test" | sed 's#{"playlist":\[#{"playlist":[{"comment":" text 1","playlist":[#'