8 Commits (ecb9179750652b3f1c5cdd54e84d024fe0b77e72)

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
rmdashrf e678006230 Update broken link for initcall
The old link
(http://www.compsoc.man.ac.uk/~moz/kernelnewbies/documents/initcall/index.html)
is 404ing. Replaced it with the same document on kernelnewbies.
6 years ago
Alexander Potapenko 759b76cba7
Update linux-interrupts-9.md
Fix style/grammar nits I've ran into while reading about interrupts.
6 years ago
Dou Liyang a91502c80a
Update linux-interrupts-9.md 6 years ago
Alexander Kuleshov e896e56c86
s/http/https for linux-insides 7 years ago
Dongliang Mu 49c8951eb8 modify broken links related with Thoery, Data structure, Misc and so on 7 years ago
Dongliang Mu 72c71c2560 fix interrupts 7 years ago
Dongliang Mu f159c63e0c Change mm to MM, interrupts to Interrupts 7 years ago