作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了一个shell脚本(myscript.sh
):
#!/bin/sh
ls
pwd
crontab -e
:
*/1 * * * * /root/myscript.sh
/var/mail/root
中显示输出。而不是在控制台上打印。
最佳答案
我能想到的最简单的方法是将输出记录到磁盘并有一个控制台窗口不断检查日志文件是否已更改并打印更改。
crontab:
*/1 * * * * /root/myscript.sh | tee -a /path/to/logfile.log
tail -F /path/to/logfile.log
#!/usr/bin/env bash
# register.sh script
# prints parent pid to special file
echo $PPID > /path/to/predfined_location.txt
#!/usr/bin/env bash
cmd=$1
remote_pid_location=$2
# Read the contents of the file into $remote_pid.
# Hopefully the contents will be the pid of the process that wants the output
# of the command to be run.
read remote_pid < $remote_pid_location
# if the process still exists and has an open stdin file descriptor
if stat /proc/$remote_pid/fd/0 &>/dev/null
then
# then run the command echoing it's output to stdout and to the
# stdin of the remote process
$cmd | tee /proc/$remote_pid/fd/0
else
# otherwise just run the command as normal
$cmd
fi
*/1 * * * * /root/wrapper_script.sh /root/myscript.sh /path/to/predefined_location.txt
register.sh
在您希望程序打印到的控制台中。
关于ubuntu - 控制台上的 Cron 作业输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10732864/
我正在开发一个在 VS 社区 2017 中开发并使用 IIS Express 10 的 .net Core MVVC 项目,我遇到了 TempData 无法在我开发的 3 台计算机中的两台上运行的问题
我是一名优秀的程序员,十分优秀!