我想要我的bash脚本睡觉,直到一个特定的时间。所以,我想要一个命令像“睡眠”,不需要间隔,但结束时间,睡眠,直到那时。
“at”-daemon不是一个解决方案,因为我需要阻止一个运行脚本,直到某个日期/时间。
有这样的命令吗?
正如Outlaw程序员所提到的,我认为解决方案只是睡眠正确的秒数。
原文链接:https://www.f2er.com/bash/391600.html要在bash中执行此操作,请执行以下操作:
current_epoch=$(date +%s) target_epoch=$(date -d '01/01/2010 12:00' +%s) sleep_seconds=$(( $target_epoch - $current_epoch )) sleep $sleep_seconds