12 Commits (58928da0bb5c08b6d63224c6cf00a2b06e4dee26)

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>
4 years ago
Alexander Kuleshov e896e56c86
s/http/https for linux-insides 6 years ago
Aaron Hill 17da4af718
Make all Github links reference a specific commit
Closes #480
7 years ago
Radek Dostál 4e08a7e426 Initialization: make grep command more precise
Idea is clearly to grep for "kthreadd", even though grepping for "kthread"
will also work.

Signed-off-by: Radek Dostál <rd@radekdostal.com>
7 years ago
Mack Stump 3fda046617 fix typos 8 years ago
Dmitriy Olshevskiy f4f5eb96ba fix typos in Initialization chapter 8 years ago
zhaoxiaoqiang 0d1ee9e346 fix grammer errors of the rest parts 9 years ago
zhaoxiaoqiang ae5cbb4c20 fix minor grammer errors 9 years ago
mudongliang ae6b0f52ee revert internals to insides in initialization 9 years ago
mudongliang dbfb8d4cd3 modify 'internals' to 'insides' 9 years ago
Diogo Kersting bfe6fc596a Some english fixes - "runned" 9 years ago
0xAX 2681740d8c Create linux-initialization-10.md 9 years ago