translated

This commit is contained in:
dianbanjiu 2018-10-19 20:13:28 +08:00
parent c1fd944d5a
commit e76f3d9d38
2 changed files with 151 additions and 152 deletions

View File

@ -1,152 +0,0 @@
translating by dianbanjiu
How To Browse And Read Entire Arch Wiki As Linux Man Pages
======
![](https://www.ostechnix.com/wp-content/uploads/2018/10/arch-wiki-720x340.jpg)
A while ago, I wrote a guide that described how to browse the Arch Wiki from your Terminal using a command line script named [**arch-wiki-cli**][1]. Using this script, anyone can easily navigate through entire Arch Wiki website and read it with a text browser of your choice. Obviously, an active Internet connection is required to use this script. Today, I stumbled upon a similar utility named **“Arch-wiki-man”**. As the name says, it is also used to read the Arch Wiki from command line, but it doesnt require Internet connection. Arch-wiki-man program helps you to browse and read entire Arch Wiki as Linux man pages. It will display any article from Arch Wiki in man pages format. Also, you need not to be online to browse Arch Wiki. The entire Arch Wiki will be downloaded locally and the updates are pushed automatically every two days. So, you always have an up-to-date, local copy of the Arch Wiki on your system.
### Installing Arch-wiki-man
Arch-wiki-man is available in [**AUR**][2], so you can install it using any AUR helper programs, for example [**Yay**][3].
```
$ yay -S arch-wiki-man
```
Alternatively, it can be installed using NPM package manager like below. Make sure you have [**installed NodeJS**][4] and run the following command to install it:
```
$ npm install -g arch-wiki-man
```
### Browse And Read Entire Arch Wiki As Linux Man Pages
The typical syntax of Arch-wiki-man is:
```
$ awman <search-query>
```
Let me show you some examples.
**Search with one or more matches**
Let us search for a [**Arch Linux installation guide**][5]. To do so, simply run:
```
$ awman Installation guide
```
The above command will search for the matches that contains the search term “Installation guide” in the Arch Wiki. If there are multiple matches for the given search term, a selection menu will appear. Choose the guide you want to read using **UP/DOWN arrows** or Vim-style keybindings ( **j/k** ) and hit ENTER to open it. The resulting guide will open in man pages format like below.
![][6]
Here, awman refers **a** rch **w** iki **m** an.
All man command options are supported, so you can navigate through guide as the way you do when reading a man page. To view the help section, press **h**.
![][7]
To exit the selection menu without entering **man** , simply press **Ctrl+c**.
To go back and/or quit man, type **q**.
**Search matches in titles and descriptions**
By default, Awman will search for the matches in titles only. You can, however, direct it to search for the matches in both the titles and descriptions as well.
```
$ awman -d vim
```
Or,
```
$ awman --desc-search vim
```
**Search for matches in contents**
Apart from searching for matches in titles and descriptions, it is also possible to scan the contents for a match as well. Please note that this will significantly slower the search process.
```
$ awman -k emacs
```
Or,
```
$ awman --apropos emacs
```
**Open the search results in web browser**
If you dont want to view the arch wiki guides in man page format, you can open it in a web browser. To do so, run:
```
$ awman -w pacman
```
Or,
```
$ awman --web pacman
```
This command will open the resulting match in the default web browser rather than with **man** command. Please note that you need Internet connection to use this option.
**Search in other languages**
By default, Awman will open the Arch wiki pages in English. If you want to view the results in other languages, for example **Spanish** , simply do:
```
$ awman -l spanish codecs
```
![][8]
To view the list of available language options, run:
```
$ awman --list-languages
```
**Update the local copy of Arch Wiki**
Like I already said, the updates are pushed automatically every two days. If you want to update it manually, simply run:
```
$ awman-update
arch-wiki-man@1.3.0 /usr/lib/node_modules/arch-wiki-man
└── arch-wiki-md-repo@0.10.84
arch-wiki-md-repo has been successfully updated or reinstalled.
```
Cheers!
--------------------------------------------------------------------------------
via: https://www.ostechnix.com/how-to-browse-and-read-entire-arch-wiki-as-linux-man-pages/
作者:[SK][a]
选题:[lujun9972][b]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://www.ostechnix.com/author/sk/
[b]: https://github.com/lujun9972
[1]: https://www.ostechnix.com/search-arch-wiki-website-commandline/
[2]: https://aur.archlinux.org/packages/arch-wiki-man/
[3]: https://www.ostechnix.com/yay-found-yet-another-reliable-aur-helper/
[4]: https://www.ostechnix.com/install-node-js-linux/
[5]: https://www.ostechnix.com/install-arch-linux-latest-version/
[6]: http://www.ostechnix.com/wp-content/uploads/2018/10/awman-1.gif
[7]: http://www.ostechnix.com/wp-content/uploads/2018/10/awman-2.png
[8]: https://www.ostechnix.com/wp-content/uploads/2018/10/awman-3-1.png

View File

@ -0,0 +1,151 @@
在 Linux 手册页中查看整个 Arch Linux Wiki
======
![](https://www.ostechnix.com/wp-content/uploads/2018/10/arch-wiki-720x340.jpg)
不久之前,我写了篇关于一个名叫 [**arch-wiki-cli**][1] 的命令行脚本的文章,使用它可以在终端命令行中查看整个 Arch Linux Wiki。使用这个脚本你可以很轻松的用你喜欢的文本浏览器查看整个 Arch Wiki。显然使用这个脚本需要你有一个好的网络环境。我今天偶然发现了一个名为 **Arch-wiki-man** 的程序,与其有着相同的功能。就跟名字说的一样,它可以让你在命令行查看 Arch Wiki但是无需联网。它可以以手册页的形式为你显示来自 Arch Wiki 的任何文章。它会下载整个 Arch Wiki并每两天自动推送一次。因此你的系统上总能有一份 Arch Wiki 最新的复印件。
### 安装 Arch-wiki-man
Arch-wiki-man 在 [**AUR**][2] 中可用,所以你可以通过类似[**Yay**][3] 的 AUR 帮助程序安装它。
```
$ yay -S arch-wiki-man
```
另外,它也可以使用 NPM 安装。首先确保你已经[**安装了 NoodJS**][4],然后使用以下命令安装它。
```
$ npm install -g arch-wiki-man
```
### 以手册页的形式查看整个 Arch Wiki
Arch-wiki-man 的典型语法如下:
```
$ awman <search-query>
```
下面看一些具体的例子:
**搜索一个或多个匹配项**
只需要下面的命令,就可以搜索 [**Arch Linux 安装指南**][5]。
```
$ awman Installation guide
```
上面的命令将会从 Arch Wiki 中搜索所有包含 “安装指南” 的条目。如果对于给出的搜索条目有很多的匹配项,将会展示为一个选择菜单。使用 **上下键** 或是 Vim 风格的方向键(**j/k**),移动到你想查看的指南上,点击回车打开。然后就会像下面这样,以手册页的形式展示指南的内容。
![][6]
awman 指的是 arch wiki man 的首字母组合。
它支持手册页的所有操作,所以你可以像使用手册页一样使用它。按 **h** 查看帮助选项。
![][7]
退出选择菜单不需要输入**man**,只需要按 **Ctrl+c**
输入 **q** 返回或者/并且退出手册页。
**在标题或者概述中搜索匹配项**
Awman 默认只会在标题中搜索匹配项。但是你也可以指定它同时在标题和概述中搜索匹配项。
```
$ awman -d vim
```
或者,
```
$ awman --desc-search vim
```
**在目录中搜索匹配项**
不同于在标题和概述中搜索匹配项,它也能够扫描整个目录达到匹配的目的。不过请注意,这样将会使搜索进程明显变慢。
```
$ awman -k emacs
```
或者,
```
$ awman --apropos emacs
```
**在 web 浏览器中打开搜索结果**
如果你不想以手册页的形式查看 Arch Wiki 指南,你也可以像下面这样在 web 浏览器中打开它。
```
$ awman -w pacman
```
或者,
```
$ awman --web pacman
```
这条命令将会在 web 浏览器中打开匹配结果。请注意,使用这个选项需要网络连接。
**在其他语言中搜索**
Awman 默认打开的是英文的 Arch Wiki 页面。如果你想用其他的语言查看搜索结果,例如 **西班牙语**,只需要像这样做:
```
$ awman -l spanish codecs
```
![][8]
使用以下命令查看可用的语言:
```
$ awman --list-languages
```
**升级本地的 Arch Wiki复印件**
就像我已经说过的,更新会每两天自动推送一次。或者你也可以使用以下命令手动更新。
```
$ awman-update
arch-wiki-man@1.3.0 /usr/lib/node_modules/arch-wiki-man
└── arch-wiki-md-repo@0.10.84
arch-wiki-md-repo has been successfully updated or reinstalled.
```
--------------------------------------------------------------------------------
via: https://www.ostechnix.com/how-to-browse-and-read-entire-arch-wiki-as-linux-man-pages/
作者:[SK][a]
选题:[lujun9972][b]
译者:[dianbanjiu](https://github.com/dianbanjiu)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://www.ostechnix.com/author/sk/
[b]: https://github.com/lujun9972
[1]: https://www.ostechnix.com/search-arch-wiki-website-commandline/
[2]: https://aur.archlinux.org/packages/arch-wiki-man/
[3]: https://www.ostechnix.com/yay-found-yet-another-reliable-aur-helper/
[4]: https://www.ostechnix.com/install-node-js-linux/
[5]: https://www.ostechnix.com/install-arch-linux-latest-version/
[6]: http://www.ostechnix.com/wp-content/uploads/2018/10/awman-1.gif
[7]: http://www.ostechnix.com/wp-content/uploads/2018/10/awman-2.png
[8]: https://www.ostechnix.com/wp-content/uploads/2018/10/awman-3-1.png