在这个命令中,如果 curl 成功,那么 res 将等于 curl 的输出。看来 '=' 比 '||' 优先级更高。
res=$(curl -s "http://example.com")||true
但是根据此链接,“||”的优先级应该比“=”高:https://tldp.org/LDP/abs/html/opprecedence.html
在这个命令中,如果 curl 成功,那么 res 将等于 curl 的输出。看来 '=' 比 '||' 优先级更高。
res=$(curl -s "http://example.com")||true
但是根据此链接,“||”的优先级应该比“=”高:https://tldp.org/LDP/abs/html/opprecedence.html
我看到了以下命令:
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://xxxxxxxx.mirror.aliyuncs.com"]
}
EOF
连字符 (‐) 是做什么用的?即使我删除连字符,它也能正常工作。