使用脚本从 crontab 启动 tmux

使用脚本从 crontab 启动 tmux

我在通过 执行脚本时启动 tmux 时遇到问题sudo crontab -e

使用此版本时我能够正常工作: * * * * * tmux new -d -s test_instance

但是,这种带有脚本的方法不起作用: * * * * * /home/user/Desktop/run

#!/bin/bash
tmux new -d -s test_instance

当将 crontab 与脚本一起使用时,我在sudo tmux ls.

我尝试了一些变体,例如:

  • sudo tmux new -d -s test_instance;
  • /bin/tmux new -d -s test_instance

相关内容