` or Docbook `` )
+
+== Heading 2 (`
` )
+
+=== Heading 3 (`
` )
+
+==== Heading 4 (`
` )
+
+===== Heading 5 (`
` )
+
+====== Heading 6 (`
` )
+
+#### Links
+
+Hyperlinks favor the link first, followed by the word or phrase used to "disguise" the link as text.
+
+This is a [http://example.com[hyperlink][4]] that leads to the example.com site.
+
+I don't find this as elegant as Markdown's link notation, but then it's a lot more flexible. For instance, you can add attributes in Asciidoc links:
+
+This is a [https://example.com[link,role=external,window=_blank][5]] with the `target="_blank"` attribute set.
+
+#### Lots more
+
+Asciidoc also features internal links so you can link from one section to another, a standard for document headers, automatic table of content generation, the ability to include other documents within another, and much much more.
+
+But best of all, Asciidoc is actually *standardized*. Not everyone knows it, but the term "Markdown" doesn't refer to one markup-light language. Different organizations and groups regularly customize and alter Markdown for their own use, so when you use Markdown you really ought to verify *which* markdown you're meant to use. Many of the conventions you might have learned from one website using Markdown don't carry over to another site using Markdown. There's essentially no standard for Markdown, and that's resulted in such confusion that the [Commonmark.org][6] project has been formed in an attempt to assemble a standardized definition.
+
+Asciidoc was designed from the start with a standard definition, so the tool or website that claims to parse Asciidoc actually does parse all valid Asciidoc, because there's only one valid Asciidoc.
+
+### Asciidoc to anything
+
+The point of writing in a markup-light language like Asciidoc is to ensure predictability and consistency when text is parsed. You want a person to write a script, or to run an application someone else has written, to be able to transform your plain text into whatever format works best for them. Sometimes that's HTML (incidentally Markdown's native output format, and fallback language when there's something missing from its own syntax.) Other times it's an EPUB, or a PDF for printing, Docbook, a LibreOffice document, or any number of possible output formats.
+
+There are several tools to help you transform Asciidoc to another format. A popular command is [Asciidoctor][7], which you can install using your package manager. For instance, on Fedora, CentOS, or RHEL:
+
+```
+$ sudo dnf install asciidoctor
+```
+
+On Debian-based systems:
+
+```
+$ sudo apt install asciidoctor
+```
+
+Alternately, you can install it on any OS with Ruby:
+
+```
+$ gem install asciidoctor
+```
+
+Here's a simple example of an Asciidoc document, which you can create using any or even a word processor (like ) as long as you save the file as plain text. Most applications expect a plain text document to use the extension `.txt`, and while it's a convention use the extension `.adoc` for Asciidoc, it's not necessary. Asciidoctor doesn't require any special extension.
+
+```
+= This is my example document
+
+It's not written in _Markdown_, nor _reStructured Text_.
+This is *Asciidoc*.
+
+It can be transformed into nearly any format using the tool `Asciidoctor` and other similar parsers.
+Try it for yourself!
+```
+
+To transform an Asciidoc document to HTML, run `asciidoctor` :
+
+```
+$ asciidoctor example.adoc
+```
+
+The file `example.adoc` is transformed into HTML5 by default, but you can use different backends to gain access to more formats.
+
+### From Asciidoc to XML
+
+My favourite is the Docbook backend, because it transforms my Asciidoc to Docbook XML, allowing me to use my existing Docbook toolchain (custom Makefiles, Apache FOP, `xsltproc`, `xmlto`, and so on) to complete my work:
+
+```
+$ asciidoctor --backend docbook5 example.adoc
+```
+
+This outputs Docbook XML. The final two built-in backends are `xhtml5` and `manpage`.
+
+### From Asciidoc to EPUB
+
+If you want to turn your writing into an ebook, you can install the EPUB3 backend:
+
+```
+$ gem install asciidoctor-epub3
+```
+
+Transform your Asciidoc into EPUB:
+
+```
+$ asciidoctor-epub3 example.adoc
+```
+
+### From Asciidoc to PDF
+
+You can transform Asciidoc directly to PDF, too:
+
+```
+$ gem install asciidoctor-pdf
+$ asciidoctor-pdf example.adoc
+```
+
+![Asciidoctor-pdf][8]
+
+Image by:
+
+(Seth Kenlon, CC BY-SA 4.0)
+
+### Who should use Asciidoc
+
+Asciidoc is excellent for technical writers and writers who have precise requirements for how they want text to be organized and parsed. It's a clear and strictly defined markup format that eliminates the confusion of competing Markdown formats, and it transforms to all the major formats. Asciidoc is admittedly more verbose and possibly less intuitive than Markdown, but it's still just plain text so you can author on anything, and Asciidoctor makes processing easy. Next time you write a document for any purpose, consider trying Asciidoc.
+
+--------------------------------------------------------------------------------
+
+via: https://opensource.com/article/22/8/drop-markdown-asciidoc
+
+作者:[Seth Kenlon][a]
+选题:[lkxed][b]
+译者:[译者ID](https://github.com/译者ID)
+校对:[校对者ID](https://github.com/校对者ID)
+
+本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
+
+[a]: https://opensource.com/users/seth
+[b]: https://github.com/lkxed
+[1]: https://opensource.com/sites/default/files/lead-images/laptop_screen_desk_work_chat_text.png
+[2]: https://opensource.com/article/17/9/docbook
+[3]: http://asciidoc.org
+[4]: http://example.com[hyperlink
+[5]: https://example.com[link,role=external,window=_blank
+[6]: http://commonmark.org
+[7]: https://asciidoctor.org
+[8]: https://opensource.com/sites/default/files/2022-08/asciidoc-pdf.webp
diff --git a/translated/tech/20211115 Linux tips for using cron to schedule tasks.md b/translated/tech/20211115 Linux tips for using cron to schedule tasks.md
deleted file mode 100644
index 81ccbfa80a..0000000000
--- a/translated/tech/20211115 Linux tips for using cron to schedule tasks.md
+++ /dev/null
@@ -1,183 +0,0 @@
-[#]: subject: "Linux tips for using cron to schedule tasks"
-[#]: via: "https://opensource.com/article/21/11/cron-linux"
-[#]: author: "Seth Kenlon https://opensource.com/users/seth"
-[#]: collector: "lujun9972"
-[#]: translator: "Veryzzj"
-[#]: reviewer: " "
-[#]: publisher: " "
-[#]: url: " "
-使用 cron 定时任务的 Linux 小技巧
-======
-
-通过使用这个简单而强大的 Linux 命令行工具,来安排备份、文件清理以及其他任务。下载我们新版 cron 速查表。
-![Linux keys on the keyboard for a desktop computer][1]
-
-在计算机上让任务按照有规律并且可预测的时间表运行很重要。作为人类,我们有时会因为分心、脑子里想太多或是度假而记不住要做的事情。计算机真的很擅长按计划做事,但在计算机采取行动之前,人类必须对计算机进行编程。
-
-在某种程度上,`cron`系统是编程的初级简单入门。通过编辑一个文件就可以让计算机做你想让它做的事。你甚至不需要知道文件保存在哪里。只需键入一个简单的命令,输入你希望电脑遵循的 “recipe”,并保存。从那时起,计算机会在指定时间执行你的指令,直到被告知停止。
-
-从设计上来看,`cron`不是一个复杂的系统。这里有一些你需要了解的内容。
-
-### cron 是什么?
-
-Cron 在一个 ”假脱机“系统上工作,像打印机和电子邮件一样。如果不你知道打印机和电子邮件使用假脱机也没关系,因为假脱机文件的意义在于,你不需要想太多。在 Linux 系统中,`/var/spool`目录被设计为重要但低级的文件的中心枢纽,用户不需要直接与之交互。 在`/var/spool`中管理的一个假脱机是 `cron`表或简称“crontab”。 包括你在内的每个用户在 Linux 系统中都有一个 crontab。用户可以编辑、查看和删除自己的 crontab。除此之外,用户可以使用 crontab 来安排任务。`cron`系统监控 crontabs,并确保一个 crontab 中列出的任何工作都能在其指定时间执行。
-
-### 编辑 cron 设置
-
-你可以使用`crontab`命令和`-e`(代表_edit_)选项来编辑你的 contab。默认情况下,大多数系统会调用`vim`文本编辑器。 如果你和我一样,不使用Vim,那么你可以在`~/.bashrc`文件中为自己设置一个不同的编辑器。我把我的设置为Emacs,但你也可以试试[Nano][4]、[Kate][5],或者任何你喜欢的编辑器。**EDITOR**环境变量定义了你在终端使用的文本编辑器,而**VISUAL**变量定义了你在图形模式下使用的编辑器:
-
-```
-export EDITOR=nano
-export VISUAL=kate
-```
-
-更新设置后刷新你的shell会话:
-
-```
-`$ source ~/.bashrc`
-```
-
-现在你可以用喜欢的编辑器编辑 crontab:
-
-```
-`$ crontab -e`
-```
-
-#### 为任务执行安排时间
-
- `cron`系统本质上是一个日历系统。可以通过五个不同的属性告诉`cron` 需要让一个任务多长时间运行一次:分、时、日、月、工作日。这些属性的顺序是固定的并且不一定是直观的,你可以把它们看作是过滤器或掩码。默认情况下,你可以理解为所有东西都被设置为_always_或者_every_。此命令将在全年的每一天每小时每分钟运行`touch /tmp/hello`:
-
-```
-`* * * * * touch /tmp/hello`
-```
-
-You can restrict this all-encompassing schedule by setting specific definitions for each attribute.可以通过设置每个属性的具体定义来限制这个包罗万象的时间安排表。使任务在每个小时的30分钟标志运行,将分钟设置为**30**:
-
-```
-`30 * * * * touch /tmp/hello`
-```
-
-You can further constrain this instruction with a specific hour. This job runs at 3:30 AM every morning: 可以通过一个具体的小时来进一步约束这个指令。使任务在每个凌晨3:30运行:
-
-```
-`30 3 * * * touch /tmp/hello`
-```
-
-你也可以让这个任务只在每个月的第一天运行:
-
-```
-`30 3 1 * * touch /tmp/hello`
-```
-
-你可以用1至12表示1至12月来设置月份,用0至6表示周日至周六来设置日。这项任务在4月份的周一的3:15运行:
-
-```
-`15 3 * 4 1 touch /tmp/hello`
-```
-
-### 设置增量
-
-所有这些设置都与一个固定时间_完全_匹配。使用 `cron` 符号设置在特定时间段后运行任务,例如,每15分钟运行一个任务:
-
-```
-`*/15 * * * * touch /tmp/hello`
-```
-
-每三天在上午10点运行任务:
-
-```
-`* 10 */3 * * touch /tmp/hello`
-```
-
-每六小时运行一次任务:
-
-```
-`* */6 * * * touch /tmp/hello`
-```
-
-### Cron 速记
-
-现代的 `cron`实现已经为常见的时间安排表添加了方便的速记,包括:
-
-* `@hourly`
-* `@daily`
-* `@weekly`
-* `@monthly`
-* `@yearly or @annually`
-
-### 列表中的 cron 任务
-
-使用`crontab`命令,查看计划中的`cron`任务列表:
-
-```
-$ crontab -l
-15 3 * 4 1 touch /tmp/hello
-```
-
-### 删除一个 crontab
-
-当用完一个crontab后,可以使用`-r`选项来删除它:
-
-```
-`$ crontab -r -i`
-```
-
-`-i`选项代表_交互式_。它在删除文件之前会提示你进行确认。
-
-### Cron 可以做什么
-
-知道如何使用 `cron`是一回事,但但知道它的用途是另一回事。经典用例就是备份计划。如果你的电脑一天中大部分时间都是开着的,或者整天整夜地开着,那么可以为重要分区进行例行备份。我会在每天凌晨3点在主要数据分区上运行一个名为`rdiff-backup`的备份程序:
-
-```
-$ crontab -l | grep rdiff
-* 3 * * * rdiff-backup /data/ /vault/
-```
-
-另一个常见的用途是系统维护。在我的 Slackware 桌面上,每周五下午会更新本地版本库目录:
-
-```
-$ crontab -l | grep slack
-* 14 * * 5 sudo slackpkg update
-```
-
-我还会每三天在15:00运行一个Ansible脚本来 [清理我的下载文件夹][6] :
-
-```
-$ crontab -l | grep ansible
-* 15 */3 * * ansible-playbook /home/seth/Ansible/cleanup.yaml
-```
-
-有一些重复数据删除脚本、文件大小和`/tmp`目录监视器、照片调整器、文件移动器以及很多琐碎的任务,你可以安排在后台运行,以帮助保持系统不受干扰。有了 `cron`,计算机就能以我只希望我的公寓能达到的程度进行自我管理。
-
-### 记住 cron 的设置
-
-除了想明白你为什么需要 `cron`之外,根据我的经验, `cron`最难的事情是记住它的语法。重复这句话给自己听,反反复复,直到你记牢它:
-
-_Minutes, hours, date, month, weekday._
-
-_Minutes, hours, date, month, weekday._
-
-_Minutes, hours, date, month, weekday._
-
-更好的做法是,去 [下载我们免费的速查表][7] ,这样当你最需要它时,它触手可及!
-
---------------------------------------------------------------------------------
-
-via: https://opensource.com/article/21/11/cron-linux
-
-作者:[Seth Kenlon][a]
-选题:[lujun9972][b]
-译者:[Veryzzj](https://github.com/Veryzzj)
-校对:[校对者ID](https://github.com/校对者ID)
-
-本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
-
-[a]: https://opensource.com/users/seth
-[b]: https://github.com/lujun9972
-[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/linux_keyboard_desktop.png?itok=I2nGw78_ "Linux keys on the keyboard for a desktop computer"
-[2]: https://opensource.com/article/21/2/linux-automation
-[3]: https://opensource.com/article/20/7/systemd-timers
-[4]: https://opensource.com/article/20/12/gnu-nano
-[5]: https://opensource.com/article/20/12/kate-text-editor
-[6]: https://opensource.com/article/21/9/keep-folders-tidy-ansible
-[7]: https://opensource.com/downloads/linux-cron-cheat-sheet