summaryrefslogtreecommitdiff
path: root/index.xml
diff options
context:
space:
mode:
authorgarhve <git@garhve.com>2022-12-02 19:41:42 +0800
committergarhve <git@garhve.com>2022-12-02 19:41:42 +0800
commitc92d9940c3774bd3f719a1655b0f2d3f6fe3020d (patch)
treed726494ba0224021e0e85cab311a01ddea7e35c5 /index.xml
parent40e06becdba8ba0378ea9d6ee5bc16126ece6403 (diff)
transfer blogs 1
Diffstat (limited to 'index.xml')
-rw-r--r--index.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/index.xml b/index.xml
index d35117b..d53bad7 100644
--- a/index.xml
+++ b/index.xml
@@ -6,7 +6,19 @@
<description>Recent content on blog | garhve&#39;s hub</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
- <lastBuildDate>Wed, 10 Aug 2022 19:24:59 +0800</lastBuildDate><atom:link href="https://blog.garhve.com/index.xml" rel="self" type="application/rss+xml" />
+ <lastBuildDate>Thu, 25 Aug 2022 13:40:56 +0800</lastBuildDate><atom:link href="https://blog.garhve.com/index.xml" rel="self" type="application/rss+xml" />
+ <item>
+ <title>Mess with bash(1)</title>
+ <link>https://blog.garhve.com/posts/3/</link>
+ <pubDate>Thu, 25 Aug 2022 13:40:56 +0800</pubDate>
+
+ <guid>https://blog.garhve.com/posts/3/</guid>
+ <description>Crontab crontab is a useful tool, I really regret that I don&amp;rsquo;t familar it earlier.
+It&amp;rsquo;s usage really simple, and these two are my frequent using:
+crontab -e #edit crontab file that reside in /var/spool/cron crontab -l #list current crontab job It basic syntax as follow, also really simple example of usage:
+delete file foo every minute * * * * * rm foo delete file foo every 15 minutes 15 * * * * rm foo delete file foo every beginning of hour 0 * * * * rm foo delete file foo every minute after 3 hours * 3 * * * rm foo delete file foo every day at 18:30 30 18 * * * rm foo delete file foo every beginning of month 0 0 0 * * rm foo delete file foo on beginning of 1st,10th of month 0 0 1,10 * * rm foo The usage really simple, I now use it to renew my SSL certification and daily update bt-tracker.</description>
+ </item>
+
<item>
<title>Install arch linux on Tencent server</title>
<link>https://blog.garhve.com/posts/2/</link>