gpt4 book ai didi

Systemd 字符串转义

转载 作者:行者123 更新时间:2023-12-02 16:08:26 26 4
gpt4 key购买 nike

如果我运行这个命令

/bin/bash -c 'while true;do /usr/bin/etcdctl set my-container "{\"host\": \"1\", \"port\": $(/usr/bin/docker port my-container 5000 | cut -d":" -f2)}" --ttl 60;sleep 45;done'

我从 etcd 得到了我所期望的 {"host":"1", "port":49155}

但是如果我把它放在 systemd 文件中

ExecStart=/bin/bash -c 'while true;do /usr/bin/etcdctl set my-container "{\"host\": \"1\", \"port\": $(/usr/bin/docker port my-container 5000 | cut -d":" -f2)}" --ttl 60;sleep 45;done'

我回来了{主机:1,端口:49155}

知道为什么文件内部的转义不同吗?我该如何修复它?谢谢!!

最佳答案

systemd-escape '\"a fun thing"\' 

输出:\x5c\x22a\x20fun\x20thing\x22\x5c

[Service]
ExecStart=/bin/sh -c 'echo "\x5c\x22a\x20fun\x20thing\x22\x5c"'

将打印有趣的事情

关于Systemd 字符串转义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23935637/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com