-
-
Notifications
You must be signed in to change notification settings - Fork 288
/
Copy pathmkdocs.yml
431 lines (409 loc) · 22 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# cspell: disable
### Project Information
site_name: "101 Linux Commands Open Source eBook"
site_description: |
This is an open-source eBook with 101 Linux commands that everyone should know.
No matter if you are a DevOps/SysOps engineer, developer, or just a Linux
enthusiast, you will most likely have to use the terminal at some point in
your career.
site_url: https://bobbyiliev.github.io/101-linux-commands-ebook
site_author: Bobby Iliev
### Repository
repo_name: bobbyiliev/101-linux-commands-ebook
repo_url: https://github.com/bobbyiliev/101-linux-commands-ebook
edit_uri: '' # comment this out to disable allowing editing of the docs from the website.
remote_branch: gh-pages
remote_name: origin
### Copyright
#copyright: Copyright © 2021 Bobby Iliev
### Preview Controls
use_directory_urls: true
strict: false
dev_addr: localhost:8010
### Configuration
docs_dir: docs
### Theme
theme:
name: material
include_sidebar: true
#custom_dir: overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: amber
toggle:
icon: material/lightbulb-outline
#icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/lightbulb
#icon: material/toggle-switch
name: Switch to light mode
features:
- content.code.annotate
- content.tabs.link
# - header.autohide
# - navigation.expand
- navigation.indexes # @regular
- navigation.instant # @regular | enables "instant-loading"; good for a very large docs repo.
- navigation.sections # @regular | extending top level sections.
- navigation.tabs # @regular | enables showing toplevel sections as tabs (horizontal).
- navigation.tabs.sticky # @regular | keeps the tabs visible even when you have scrolled down.
- navigation.top # @regular | adds a "back-to-top" is shown after the user scrolls down and then starts to come back up again.
# - navigation.tracking # @insiders
- search.highlight
- search.share
- search.suggest
- toc.integrate # @regular | integrates the nav (on-left) with toc (on-right) and places the integrated nav+toc on-left.
icon:
repo: fontawesome/brands/github
#logo: img/icon-white.svg
#favicon: img/favicon.png
# font:
# text: Roboto
# code: Roboto Mono
language: en
#google_analytics:
#- UA-XXXXXXXXX-X
#- auto
### Plugins
plugins:
- exclude:
glob:
- '*/storage/*'
- search:
indexing: 'full' # 'full' (default), 'sections', 'titles'
- git-revision-date
# macros must be placed after plugin: git-revision-date
- macros:
include_dir: docs/assets/snippets # snippets
- markdownextradata:
data: data
- minify:
minify_html: true
# - social # @insiders
# - mkdocstrings
# - mkdocs-jupyter:
# include_source: true
# ignore_h1_titles: true
# execute: true
- tooltips
# - markmap:
# base_path: docs
# encoding: utf-8
# file_extension: .mm.md
# d3_version: 6.7.0
# lib_version: 0.11.5
# view_version: 0.2.6
# - kroki:
# ServerURL: https://kroki.io
# EnableBlockDiag: true
# Enablebpmn: true
# EnableExcalidraw: true
# EnableMermaid: true
# DownloadImages: false
# DownloadDir: docs/assets/kroki_generated
- pdf-export:
verbose: true
media_type: pdf-export # 'print' or 'pdf-export'
enabled_if_env: MKDOCS_ENABLE_PDF_EXPORT
### Extensions
markdown_extensions:
##! Controls: markdown.extensions
- markdown.extensions.abbr # same as: - abbr
- markdown.extensions.admonition # same as: - admonition
- markdown.extensions.attr_list # same as: - attr_list
- markdown.extensions.codehilite: # same as: - codehilite
guess_lang: false
- markdown.extensions.def_list # same as: - def_list
- markdown.extensions.extra # same as: - extra
- markdown.extensions.footnotes # same as: - footnotes
- markdown.extensions.meta: # same as: - meta
- markdown.extensions.md_in_html # same as: - md_in_html
- markdown.extensions.smarty: # same as: - smarty
smart_quotes: false
- markdown.extensions.tables # same as: - tables
- markdown.extensions.toc: # same as: - toc
slugify: !!python/name:pymdownx.slugs.uslugify
permalink: true
toc_depth: 6 # default: 6
#separator: "-"
- markdown_include.include:
base_path: docs
##! Controls: mdx
- mdx_include:
base_path: docs
- mdx_truly_sane_lists:
nested_indent: 2
truly_sane: true
##! Controls: pymdownx
- pymdownx.arithmatex:
generic: true
# - pymdownx.b64:
# base_path: '.'
- pymdownx.betterem:
smart_enable: all # default: 'underscore' ; options: 'underscore', 'all', 'asterisk', or 'none'
- pymdownx.caret: # "super^script^" will render as superscript text: super<sup>script</sup>.
smart_insert: true # default: true
insert: true # default: true
superscript: true # default: true
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.escapeall:
hardbreak: false
nbsp: false
# Uncomment these 2 lines during development to more easily add highlights
- pymdownx.highlight:
use_pygments: true # this uses pygments
linenums: false # Set "linenums" to true for enabling
# code-block line-numbering
# globally.
linenums_style: pymdownx-inline # table or pymdownx-inline
- pymdownx.inlinehilite:
custom_inline:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.inline_mathjax_format
- pymdownx.keys:
separator: "\uff0b"
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true #
social_url_shorthand: true
social_url_shortener: true
user: bobbyiliev #
repo: 101-linux-commands-ebook #
normalize_issue_symbols: true
- pymdownx.mark:
smart_mark: true
- pymdownx.pathconverter:
base_path: '101-linux-commands-ebook' # default: ''
relative_path: '' # default ''
absolute: true # default: false
tags: 'a script img link object embed'
- pymdownx.progressbar:
level_class: true
add_classes: ''
progress_increment: 10
- pymdownx.saneheaders
- pymdownx.superfences:
preserve_tabs: false
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
# - name: md-render
# class: md-render
# format: !!python/name:tools.pymdownx_md_render.md_sub_render
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path:
- '.'
- './docs/ebook/en'
- './LICENSE'
encoding: 'utf-8' # Encoding to use when reading in the snippets.
check_paths: true # Make the build fail if a snippet can't be found.
- pymdownx.striphtml
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde # ~~text~~ will render as strikethrough text. "sub~script" will render as subscript text: sub<sub>script</sub>.
### Customization
extra:
# version:
# default: latest
# provider: mike
alternate:
- link: /
name: en - English
extra_css:
## for: termynal (terminal animation)
- assets/css-js/termynal/css/termynal.css
- assets/css-js/termynal/css/custom.css
## for: pymdownx.progressbar
- assets/css-js/general/css/progressbar.css
## for: mkdocs-tooltips
- assets/css-js/mkdocs-tooltips/css/hint.min.css
- assets/css-js/mkdocs-tooltips/css/custom.css
## for: quiz-qrcodes
- assets/css-js/general/css/quiz_qrcode.css
## for: mkdocs-material using highlight.js
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css
## for: mkdocs-export-pdf-plugin
- assets/css-js/mkdocs-pdf-export/css/pdf-export.css
extra_javascript:
## for: pymdownx.arithmatex
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
## for: markdown.extensions.tables
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- assets/css-js/general/js/tables.js
## for: termynal (terminal animation)
- assets/css-js/termynal/js/termynal.js
- assets/css-js/termynal/js/custom.js
## for: fontawesome (personal kit-link remove before making public)
# example fontawesome-kit: https://kit.fontawesome.com/0a1b2c3d4e.js
# Set the environment variable "FONTAWESOME_KIT" with the value of the kit.
- !ENV FONTAWESOME_KIT
## for: lottiefiles
- https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js
## for: mkdocs-material using highlight.js
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- assets/css-js/general/js/highlight-config.js
## for: mkdocs-markmap
- https://unpkg.com/[email protected]/dist/d3.min.js
- https://unpkg.com/[email protected]/dist/browser/index.min.js
- https://unpkg.com/[email protected]/dist/index.min.js
### Pages: Navigation
## @@ Begin NAVIGATION
"nav":
- "<p><i class='fas fa-home'> </i> Home</p>": "index.md"
- "<p><i class='fas fa-terminal'> </i>Commands</p>":
- "<code>000: <strong>Introduction</strong></code>": "ebook/en/content/000-the-introduction-command.md"
- "<code>001: <strong>ls</strong></code>": "ebook/en/content/001-the-ls-command.md"
- "<code>002: <strong>cd</strong></code>": "ebook/en/content/002-the-cd-command.md"
- "<code>003: <strong>cat</strong> and <strong>tac</strong></code>": "ebook/en/content/003-the-cat-tac-command.md"
- "<code>004: <strong>head</strong></code>": "ebook/en/content/004-the-head-command.md"
- "<code>005: <strong>tail</strong></code>": "ebook/en/content/005-the-tail-command.md"
- "<code>006: <strong>pwd</strong></code>": "ebook/en/content/006-the-pwd-command.md"
- "<code>007: <strong>touch</strong></code>": "ebook/en/content/007-the-touch-command.md"
- "<code>008: <strong>cal</strong></code>": "ebook/en/content/008-the-cal-command.md"
- "<code>009: <strong>bc</strong></code>": "ebook/en/content/009-the-bc-command.md"
- "<code>010: <strong>df</strong></code>": "ebook/en/content/010-the-df-command.md"
- "<code>011: <strong>help</strong></code>": "ebook/en/content/011-the-help-command.md"
- "<code>012: <strong>factor</strong></code>": "ebook/en/content/012-the-factor-command.md"
- "<code>013: <strong>uname</strong></code>": "ebook/en/content/013-the-uname-command.md"
- "<code>014: <strong>mkdir</strong></code>": "ebook/en/content/014-the-mkdir-command.md"
- "<code>015: <strong>gzip</strong></code>": "ebook/en/content/015-the-gzip-command.md"
- "<code>016: <strong>whatis</strong></code>": "ebook/en/content/016-the-whatis-command.md"
- "<code>017: <strong>who</strong></code>": "ebook/en/content/017-the-who-command.md"
- "<code>018: <strong>free</strong></code>": "ebook/en/content/018-the-free-command.md"
- "<code>019: <strong>top</strong> and <strong>htop</strong></code>": "ebook/en/content/019-the-top-htop-command.md"
- "<code>020: <strong>sl</strong></code>": "ebook/en/content/020-the-sl-command.md"
- "<code>021: <strong>echo</strong></code>": "ebook/en/content/021-the-echo-command.md"
- "<code>022: <strong>finger</strong></code>": "ebook/en/content/022-the-finger-command.md"
- "<code>023: <strong>groups</strong></code>": "ebook/en/content/023-the-groups-command.md"
- "<code>024: <strong>man</strong></code>": "ebook/en/content/024-the-man-command.md"
- "<code>025: <strong>passwd</strong></code>": "ebook/en/content/025-the-passwd-command.md"
- "<code>026: <strong>w</strong></code>": "ebook/en/content/026-the-w-command.md"
- "<code>027: <strong>whoami</strong></code>": "ebook/en/content/027-the-whoami-command.md"
- "<code>028: <strong>history</strong></code>": "ebook/en/content/028-the-history-command.md"
- "<code>029: <strong>login</strong></code>": "ebook/en/content/029-the-login-command.md"
- "<code>030: <strong>lscpu</strong></code>": "ebook/en/content/030-the-lscpu-command.md"
- "<code>031: <strong>cp</strong></code>": "ebook/en/content/031-the-cp-command.md"
- "<code>032: <strong>mv</strong></code>": "ebook/en/content/032-the-mv-command.md"
- "<code>033: <strong>ps</strong></code>": "ebook/en/content/033-the-ps-command.md"
- "<code>034: <strong>kill</strong></code>": "ebook/en/content/034-the-kill-command.md"
- "<code>035: <strong>killall</strong></code>": "ebook/en/content/035-the-killall-command.md"
- "<code>036: <strong>env</strong></code>": "ebook/en/content/036-the-env-command.md"
- "<code>037: <strong>printenv</strong></code>": "ebook/en/content/037-the-printenv-command.md"
- "<code>038: <strong>hostname</strong></code>": "ebook/en/content/038-the-hostname-command.md"
- "<code>039: <strong>nano</strong></code>": "ebook/en/content/039-the-nano-command.md"
- "<code>040: <strong>rm</strong></code>": "ebook/en/content/040-the-rm-command.md"
- "<code>041: <strong>ifconfig</strong></code>": "ebook/en/content/041-the-ifconfig-command.md"
- "<code>042: <strong>ip</strong></code>": "ebook/en/content/042-the-ip-command.md"
- "<code>043: <strong>clear</strong></code>": "ebook/en/content/043-the-clear-command.md"
- "<code>044: <strong>su</strong></code>": "ebook/en/content/044-the-su-command.md"
- "<code>045: <strong>wget</strong></code>": "ebook/en/content/045-the-wget-command.md"
- "<code>046: <strong>curl</strong></code>": "ebook/en/content/046-the-curl-command.md"
- "<code>047: <strong>yes</strong></code>": "ebook/en/content/047-the-yes-command.md"
- "<code>048: <strong>last</strong></code>": "ebook/en/content/048-the-last-command.md"
- "<code>049: <strong>locate</strong></code>": "ebook/en/content/049-the-locate-command.md"
- "<code>050: <strong>iostat</strong></code>": "ebook/en/content/050-the-iostat-command.md"
- "<code>051: <strong>sudo</strong></code>": "ebook/en/content/051-the-sudo-command.md"
- "<code>052: <strong>apt</strong></code>": "ebook/en/content/052-the-apt-command.md"
- "<code>053: <strong>yum</strong></code>": "ebook/en/content/053-the-yum-command.md"
- "<code>054: <strong>zip</strong></code>": "ebook/en/content/054-the-zip-command.md"
- "<code>055: <strong>unzip</strong></code>": "ebook/en/content/055-the-unzip-command.md"
- "<code>056: <strong>shutdown</strong></code>": "ebook/en/content/056-the-shutdown-command.md"
- "<code>057: <strong>dir</strong></code>": "ebook/en/content/057-the-dir-command.md"
- "<code>058: <strong>reboot</strong></code>": "ebook/en/content/058-the-reboot-command.md"
- "<code>059: <strong>sort</strong></code>": "ebook/en/content/059-the-sort-command.md"
- "<code>060: <strong>paste</strong></code>": "ebook/en/content/060-the-paste-command.md"
- "<code>061: <strong>exit</strong></code>": "ebook/en/content/061-the-exit-command.md"
- "<code>062: <strong>diff</strong> and <strong>sdiff</strong></code>": "ebook/en/content/062-the-diff-sdiff-command.md"
- "<code>063: <strong>tar</strong></code>": "ebook/en/content/063-the-tar-command.md"
- "<code>064: <strong>gunzip</strong></code>": "ebook/en/content/064-the-gunzip-command.md"
- "<code>065: <strong>hostnamectl</strong></code>": "ebook/en/content/065-the-hostnamectl-command.md"
- "<code>066: <strong>iptable</strong></code>": "ebook/en/content/066-the-iptable-command.md"
- "<code>067: <strong>netstat</strong></code>": "ebook/en/content/067-the-netstat-command.md"
- "<code>068: <strong>lsof</strong></code>": "ebook/en/content/068-the-lsof-command.md"
- "<code>069: <strong>bzip2</strong></code>": "ebook/en/content/069-the-bzip2-command.md"
- "<code>070: <strong>service</strong></code>": "ebook/en/content/070-the-service-command.md"
- "<code>071: <strong>vmstat</strong></code>": "ebook/en/content/071-the-vmstat-command.md"
- "<code>072: <strong>mpstat</strong></code>": "ebook/en/content/072-the-mpstat-command.md"
- "<code>073: <strong>ncdu</strong></code>": "ebook/en/content/073-the-ncdu-command.md"
- "<code>074: <strong>uniq</strong></code>": "ebook/en/content/074-the-uniq-command.md"
- "<code>075: <strong>rpm</strong></code>": "ebook/en/content/075-the-rpm-command.md"
- "<code>076: <strong>scp</strong></code>": "ebook/en/content/076-the-scp-command.md"
- "<code>077: <strong>sleep</strong></code>": "ebook/en/content/077-the-sleep-command.md"
- "<code>078: <strong>split</strong></code>": "ebook/en/content/078-the-split-command.md"
- "<code>079: <strong>stat</strong></code>": "ebook/en/content/079-the-stat-command.md"
- "<code>080: <strong>useradd</strong></code>": "ebook/en/content/080-the-useradd-command.md"
- "<code>081: <strong>userdel</strong></code>": "ebook/en/content/081-the-userdel-command.md"
- "<code>082: <strong>usermod</strong></code>": "ebook/en/content/082-the-usermod-command.md"
- "<code>083: <strong>ionice</strong></code>": "ebook/en/content/083-the-ionice-command.md"
- "<code>084: <strong>du</strong></code>": "ebook/en/content/084-the-du-command.md"
- "<code>085: <strong>ping</strong></code>": "ebook/en/content/085-the-ping-command.md"
- "<code>086: <strong>rsync</strong></code>": "ebook/en/content/086-the-rsync-command.md"
- "<code>087: <strong>dig</strong></code>": "ebook/en/content/087-the-dig-command.md"
- "<code>088: <strong>whois</strong></code>": "ebook/en/content/088-the-whois-command.md"
- "<code>089: <strong>ssh</strong></code>": "ebook/en/content/089-the-ssh-command.md"
- "<code>090: <strong>awk</strong></code>": "ebook/en/content/090-the-awk-command.md"
- "<code>091: <strong>crontab</strong></code>": "ebook/en/content/091-the-crontab-command.md"
- "<code>092: <strong>xargs</strong></code>": "ebook/en/content/092-the-xargs-command.md"
- "<code>093: <strong>nohup</strong></code>": "ebook/en/content/093-the-nohup-command.md"
- "<code>094: <strong>pstree</strong></code>": "ebook/en/content/094-the-pstree-command.md"
- "<code>095: <strong>tree</strong></code>": "ebook/en/content/095-the-tree-command.md"
- "<code>096: <strong>whereis</strong></code>": "ebook/en/content/096-the-whereis-command.md"
- "<code>097: <strong>printf</strong></code>": "ebook/en/content/097-the-printf-command.md"
- "<code>098: <strong>cut</strong></code>": "ebook/en/content/098-the-cut-command.md"
- "<code>099: <strong>sed</strong></code>": "ebook/en/content/099-the-sed-command.md"
- "<code>100: <strong>vim</strong></code>": "ebook/en/content/100-the-vim-command.md"
- "<code>101: <strong>chown</strong></code>": "ebook/en/content/101-the-chown-command.md"
- "<code>102: <strong>find</strong></code>": "ebook/en/content/102-the-find-command.md"
- "<code>103: <strong>rmdir</strong></code>": "ebook/en/content/103-the-rmdir-command.md"
- "<code>104: <strong>lsblk</strong></code>": "ebook/en/content/104-the-lsblk-command.md"
- "<code>105: <strong>cmatrix</strong></code>": "ebook/en/content/105-the-cmatrix-command.md"
- "<code>106: <strong>chmod</strong></code>": "ebook/en/content/106-the-chmod-command.md"
- "<code>107: <strong>grep</strong></code>": "ebook/en/content/107-the-grep-command.md"
- "<code>108: <strong>screen</strong></code>": "ebook/en/content/108-the-screen-command.md"
- "<code>109: <strong>nc</strong></code>": "ebook/en/content/109-the-nc-command.md"
- "<code>110: <strong>make</strong></code>": "ebook/en/content/110-the-make-command.md"
- "<code>111: <strong>basename</strong></code>": "ebook/en/content/111-the-basename-command.md"
- "<code>112: <strong>banner</strong></code>": "ebook/en/content/112-the-banner-command.md"
- "<code>113: <strong>alias</strong></code>": "ebook/en/content/113-the-alias-command.md"
- "<code>114: <strong>which</strong></code>": "ebook/en/content/114-the-which-command.md"
- "<code>115: <strong>date</strong></code>": "ebook/en/content/115-the-date-command.md"
- "<code>116: <strong>mount</strong></code>": "ebook/en/content/116-the-mount-command.md"
- "<code>117: <strong>nice</strong></code>": "ebook/en/content/117-the-nice-command.md"
- "<code>118: <strong>wc</strong></code>": "ebook/en/content/118-the-wc-command.md"
- "<code>119: <strong>tr</strong></code>": "ebook/en/content/119-the-tr-command.md"
- "<code>120: <strong>fdisk</strong></code>": "ebook/en/content/120-the-fdisk-command.md"
- "<code>121: <strong>wait</strong></code>": "ebook/en/content/121-the-wait-command.md"
- "<code>122: <strong>zcat</strong></code>": "ebook/en/content/122-the-zcat-command.md"
- "<code>123: <strong>fold</strong></code>": "ebook/en/content/123-the-fold-command.md"
- "<code>124: <strong>quota</strong></code>": "ebook/en/content/124-the-quota-command.md"
- "<code>125: <strong>aplay</strong></code>": "ebook/en/content/125-the-aplay-command.md"
- "<code>126: <strong>spd</strong> and <strong>say</strong></code>": "ebook/en/content/126-the-spd-say-command.md"
- "<code>127: <strong>xeyes</strong></code>": "ebook/en/content/127-the-xeyes-command.md"
- "<code>128: <strong>parted</strong></code>": "ebook/en/content/128-the-parted-command.md"
- "Wrap Up": "ebook/en/content/999-wrap-up.md"
- "<p><i class='fas fa-download'> </i>Download</p>":
- "Download eBook": "download.md"
- "<p><i class='fas fa-info-circle'> </i>About</p>":
- "Info": "about/index.md"
- "License": "about/license.md"
## @@ End NAVIGATION