今天上午 9:00 在我的 Linux 命令行上打印“hello”(或一些提醒):
$ at 9:00AM
warning: commands will be executed using /bin/sh
at> echo "hello"
at> <EOT>
但是,在指定的时间,什么都没有发生。
我有一个空文件,etc/at.deny
没有/etc/at.allow
文件,所以使用该命令的权限应该没有任何问题。此外,在上午 9:00 写入文件也可以:
$ at 9:00AM
at> echo "hello" > /home/mart/hello.txt
at> <EOT>
$ cat /home/mart/hello.txt
hello
所有作业都按计划显示,我无法在终端窗口中获得任何输出(我在带有终结者的 Crunchbang Linux 上)。为什么?我是否需要以某种方式指定该输出的窗口?
谢谢你的帮助!