背景
shell 中的传参-字符串传参,dict传参
#!/bin/bash val1=$1 val2=$2 val3=$3 d='{"key": '"${val1}"', "num": '${val2}'}' c='www='${val3}'' echo $d echo $c
运行结果