博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to use 'crontab' command on bitnami
阅读量:5362 次
发布时间:2019-06-15

本文共 436 字,大约阅读时间需要 1 分钟。

You can edit the cron file using the following command:

 

$ sudo crontab -e

 

You can add a new line like the following:

 

30 8 * * * echo "test" >> /tmp/test

 

In this case, a "test" line will be added in the /tmp/test file at 8:30 every day. You can check your cron tasks with:

 

$ sudo crontab -l Note: for nano, F3 -> save file but not exit, then press ENTER to confirm file name to save.

转载于:https://www.cnblogs.com/rosepotato/p/4920552.html

你可能感兴趣的文章
Java 编程下实现随机无重复数字功能
查看>>
Android 编程下的代码混淆
查看>>
animation属性
查看>>
页内的模块和组件抽象规划经验
查看>>
安全-分析深圳电信的新型HTTP劫持方式
查看>>
将Centos的yum源更换为国内的阿里云源
查看>>
git diff 的用法
查看>>
一段sql的优化
查看>>
十进制与十六进制的相互转换
查看>>
在Flex中用Validator检测数字、字符串、Email.
查看>>
[leetcode]4Sum
查看>>
POJ1062 昂贵的聘礼
查看>>
【零基础学习iOS开发】【02-C语言】08-基本运算
查看>>
Java 将指定字符串连接到此字符串的结尾 concat()
查看>>
Hibernate Criterion
查看>>
Python知识
查看>>
我们为什么要搞长沙.NET技术社区(三)
查看>>
杭电acm Cake
查看>>
js函数中this的指向
查看>>
c++ 引用方式传递数组
查看>>