热门标签
更多>
搜索结果
查询Tags标签: centos7pc1,共有 2条记录-
linux中一次性计划任务服务at命令
1、创建计划任务服务[root@centos7pc1 test2]# ls [root@centos7pc1 test2]# date Wed Apr 6 17:16:12 CST 2022 [root@centos7pc1 test2]# at now+2 min ## 设置任务时间, 2分钟后 at> touch a.txt ## 设置执行的命令 at> <EOT> …
2022/4/7 7:23:52 人评论 次浏览 -
linux中 $RANDOM取随机数
$RANDOM 是linux中的内置变量,可以随机生成 0~32767之间的整数数字。 1、取0~9的随机数[root@centos7pc1 test3]# ls [root@centos7pc1 test3]# expr $RANDOM % 10 7 [root@centos7pc1 test3]# expr $RANDOM % 10 2 [root@centos7pc1 test3]# expr $RANDOM % 10 0 [root@…
2022/4/3 7:20:45 人评论 次浏览