mirror of
https://github.com/0xAX/linux-insides.git
synced 2025-07-10 02:18:04 +00:00
Добавление электронных книг в репозиторий
This commit is contained in:
parent
e42092e8b1
commit
4cbd8f1aff
BIN
Ebooks/Linux Inside на русском.epub
Normal file
BIN
Ebooks/Linux Inside на русском.epub
Normal file
Binary file not shown.
BIN
Ebooks/Linux Inside на русском.mobi
Normal file
BIN
Ebooks/Linux Inside на русском.mobi
Normal file
Binary file not shown.
BIN
Ebooks/Linux Inside на русском.pdf
Normal file
BIN
Ebooks/Linux Inside на русском.pdf
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
linux-insides
|
||||
Linux Indside на русском
|
||||
===============
|
||||
|
||||
**[Оригинальный проект](https://github.com/0xAX/linux-insides)**
|
||||
@ -9,6 +9,8 @@ linux-insides
|
||||
|
||||
**Вопросы/Предложения по переводу**: Не стесняйтесь задавать любые вопросы и предложения мне на [email](mailto:proninyaroslav@mail.ru).
|
||||
|
||||
**Электронные версии книги**: вы можете найти PDF/EPUB/MOBI в [GitBook](https://legacy.gitbook.com/book/proninyaroslav/linux-insides-ru/details) или в папке репозитория [Ebooks](https://github.com/proninyaroslav/linux-insides-ru/tree/master/Ebooks) (периодически обновляется).
|
||||
|
||||
Поддержка
|
||||
---------------
|
||||
|
||||
@ -16,8 +18,7 @@ linux-insides
|
||||
|
||||
- **Yandex Money**: `410011738561939`
|
||||
- **PayPal**: [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GWWYZSCKPAB2Q)
|
||||
- **Amazon.com eGift Cards**: просто выберите сумму и введите e-mail `proninyaroslav@mail.ru`
|
||||
в gift card details https://www.amazon.com/gp/product/B004LLIKVU/
|
||||
- **Amazon.com eGift Cards**: просто выберите сумму и введите e-mail `proninyaroslav@mail.ru` в gift card details https://www.amazon.com/gp/product/B004LLIKVU/
|
||||
|
||||
Таккже вы можете поддержать **оригинального автора** следующими способами:
|
||||
|
||||
|
Binary file not shown.
@ -1,21 +1,13 @@
|
||||
# Scripts
|
||||
# Скрипты
|
||||
|
||||
## Description
|
||||
## Описание
|
||||
|
||||
`get_all_links.py` : justify one link is live or dead with network connection
|
||||
`get_all_links.py`: проверяет ссылки на наличие нерабочих
|
||||
|
||||
`latex.sh` : a script for converting Markdown files in each of the subdirectories into a unified PDF typeset in LaTeX
|
||||
|
||||
## Usage
|
||||
## Использование
|
||||
|
||||
`get_all_links.py` :
|
||||
|
||||
```
|
||||
./get_all_links.py ../
|
||||
```
|
||||
|
||||
`latex.sh` :
|
||||
|
||||
```
|
||||
./latex.sh
|
||||
```
|
||||
|
@ -1,26 +0,0 @@
|
||||
# latex.sh
|
||||
# A script for converting Markdown files in each of the subdirectories into a unified PDF typeset in LaTeX.
|
||||
# Requires TexLive, Pandoc templates and pdfunite. Not necessary if you just want to read the PDF, only if you're compiling it yourself.
|
||||
|
||||
#!/bin/bash
|
||||
rm -r build
|
||||
mkdir build
|
||||
for D in $(ls ../); do
|
||||
if [ -d "../${D}" ]
|
||||
then
|
||||
echo "Converting $D . . ."
|
||||
pandoc ../$D/README.md ../$D/linux-*.md -o build/$D.tex --template default
|
||||
fi
|
||||
done
|
||||
|
||||
cd ./build
|
||||
for f in *.tex
|
||||
do
|
||||
pdflatex -interaction=nonstopmode $f
|
||||
done
|
||||
|
||||
cd ../
|
||||
pandoc ../README.md ../SUMMARY.md ../CONTRIBUTING.md ../contributors.md \
|
||||
-o ./build/Preface.tex --template default
|
||||
|
||||
pdfunite ./build/*.pdf LinuxKernelInsides.pdf
|
Loading…
Reference in New Issue
Block a user