1
我正在bash腳本中運行一些mongodb命令,但需要在heredoc文本中插入一個字符串。我無法正確插入值。這將如何完成?將變量插入到bash腳本中mongodb命令heredoc
today=`date -d "00:00:00" +%s`
todaytime=$(($today*1000))
mongo <<EOF > test
use log
db.translogs.remove("{Dt: {$lt: new Date($todaytime)}}")
exit
EOF