参考链接:https://unix.stackexchange.com/questions/23179/how-to-send-variable-to-an-inline-shell-script
to=
输出2333,没有to指向的路径。
解决方案:把to变成环境变量。
to=$(pwd)/table.txt
sh -c 'echo 2333 $to'
export to
sh -c 'echo 2333 $to'
输出:
2333
2333 /home/searchstar/test/test/table.txt