1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 22:58:08 +00:00
Commit Graph

7 Commits

Author SHA1 Message Date
Sebastian Fricke
2cff4abf08 Gitbook Links: replace old links with new ones
The old links didn't point to valid locations.
Replace the old links with the new links and test those changes with a
small script: https://github.com/initBasti/markdown_link_check .

______________________________________________________________

In order to find and replace the links, I used the following commands:

grep -rwohP '.' -e "\(https\:\/\/0xax.gitbooks.io\/\S*\)" > links.txt
(Find all links recursivly in the project directories and print out the
 only the matches links)

Within links.txt:
Remove the '(' & ')' => :%s/\(//g  and :%s/\)//g
Remove duplicates => :sort u

Test if the links work with:
python3 md_link_check.py --pattern 0xax.gitbook --output-file bad.txt
(https://github.com/initBasti/markdown_link_check)

Create replace commands:
:%s/.*/grep -rl & '.' | xargs sed -i 's#&##g'
Enter replacement URL between the 2nd & 3rd '#'
Execute commands: :w !sh

Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
2020-05-31 17:23:17 +02:00
Manbing
659a9be536 Cgroups/linux-cgroups-1.md: Fix typo
Modify "cp_cgrp_subsys" to "cpu_cgrp_subsys".

Signed-off-by: Manbing <manbing3@gmail.com>
2020-03-12 09:04:39 +08:00
Michael D
a82aca5a4a Some more images recovered from waybackmachine
Patch 2: Cgroups/
2019-10-10 19:50:47 +02:00
Maurice Aiken
dc844a5dc9 fix the ambiguous sentence 2019-03-12 10:54:53 +08:00
Alexander Kuleshov
ca61322d6a cgroups: improve indentation
Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
2018-05-02 00:25:07 +06:00
Alexander Kuleshov
e896e56c86
s/http/https for linux-insides 2018-03-24 01:06:57 +06:00
Joshua Murphy
463fcd587a Now successfuly converting each chapter into LaTeX, compiling it and then merging each PDF together into a single book. Currently no image support! 2018-02-14 10:58:22 -03:30