index.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="stylesheet" href="/uwebzh/style.css" type="text/css" />
  7. <title>定时脚本</title>
  8. <script type="text/javascript">
  9. function findLang(){
  10. let href = location.href;
  11. for(let i=href.length-1;i>0;i--){
  12. if('/'==href.charAt(i) && '/'==href.charAt(i-3))
  13. return i;
  14. }
  15. return 0;
  16. }
  17. function nav2(page){
  18. let i = findLang();
  19. location.href = location.href.substring(0,i+1)+page;
  20. }
  21. function nav2Lang(lang){
  22. let i = findLang();
  23. let href = location.href;
  24. location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
  25. }
  26. </script>
  27. </head>
  28. <body>
  29. <header class='header'>
  30. <a class="logo" href="javascript:void(0)" onclick="return nav2('index.html')">Home</a> <a class="logo" href="javascript:void(0)" onclick="return nav2('tags/index.html')">Tags</a>
  31. <nav>
  32. </nav>
  33. </header>
  34. <br />
  35. <div class="container">
  36. <h1 class="title">定时脚本
  37. <br>
  38. <span class="subtitle"></span>
  39. </h1>
  40. <ul class="tags">
  41. </ul>
  42. <p>如果勾选“文件预处理”,则uweb启动时运行&quot;default.rc&quot; shell脚本。可与tcron定时管<br>
  43. 理工具(<a href="i:0bhttps://fastly.jsdelivr.net/gh/torappinfo/uwebjs/bin/tcron.tgz">安装tcron</a>)配合运行定时任务,如存储清理、网页签到等。</p>
  44. <p>勾选“文件预处理”的情况下,如果存在文件&quot;default.rc2&quot;,则在超微浏览器成为前台时,此文件代码被执行。在超微永不退出的情况下,&quot;default.rc&quot;将没有任何执行机会,而&quot;default.rc2&quot;保证即使超微长时间不重启,定时脚本仍可以执行。</p>
  45. <h4 id="tcron">tcron</h4>
  46. <p>usage: tcron logfile command hours [timezone delay_sec elsecommand]<br>
  47. 指定时间范围内如果命令没有被执行过,则tcron会执行一次命令。<br>
  48. 其中logfile可以不记录任何log,成功执行命令以后只需更新一下改动时间即可。<br>
  49. hours: 如果为正整数,则将每天划分为不同的时间区间(单位小时),每个区间命令只能执行一次。如果为负整数,则取绝对值,并且单位为分钟,保证下一次执行至少间隔这么多分钟。<br>
  50. hours也可以为&quot;hh:mm-hh:mm,...&quot;格式, 譬如&quot;6:00-8:30,11:00-13:00,5:30-6:30&quot;为每天三餐时间脚本执行一次。<br>
  51. timezone: 时区:譬如“8”表示北京时间。(默认为8)<br>
  52. delay_sec: 等待指定秒数后再执行命令,防止命令被集中执行。<br>
  53. elsecommand: 无需执行命令command时执行。</p>
  54. <p>ex:<br>
  55. set PATH=/system/bin:/data/data/info.torapp.uweb/files/bin<br>
  56. #天翼云每天签到一次<br>
  57. tcron /sdcard/a &quot;cloud189-go sign;toybox touch /sdcard/a&quot; 24<br>
  58. #每30天清空baidu目录<br>
  59. tcron /sdcard/b &quot;rm -rf /sdcard/baidu/*;toybox touch /sdcard/b&quot; 720</p>
  60. <p><a target="_self" href="i:0hdefault.rc:https://fastly.jsdelivr.net/gh/torappinfo/uweb/zh/searchurl/txt/default.rc">安装default.rc模板文件(termux)</a></p>
  61. <p>可能用到的命令:<br>
  62. termux中安装remind,可配置各类提醒功能,十分强大。<br>
  63. apt install remind</p>
  64. <p>am start -n info.torapp.uweb/.wvActivity -d 'javascript:alert(&quot;remind&quot;)' #提醒<br>
  65. 其中-d后面参数可以为任意url包括超微内部&quot;i:&quot; url。</p>
  66. <h4 id="cron">cron</h4>
  67. <p>Termux下安装cronie:<br>
  68. apt install cronie<br>
  69. crontab -e</p>
  70. <p>crontab例子内容如下:<br>
  71. 30,31 20-23/1 * * * node Loon/jd_live_redrain.js<br>
  72. 0,1 19-21/1 * * * node Loon/jd_live_redrain2.js<br>
  73. 0,1 0,9,11,13,15,17,19,20,21,23 * * * node Loon/jd_live_redrain_nian.js<br>
  74. 0,1 0,9,11,13,15,17,19,20,21,23 * * * node Loon/jd_live_redrain_official.js<br>
  75. 30,31 12-23/1 * * * node Loon/jd_live_redrain_half.js</p>
  76. <p>Termux下运行:crond<br>
  77. cron运行期间保持唤醒锁,保证termux可以稳定运行。</p>
  78. </div>
  79. </body>
  80. </html>