mirror of
https://github.com/0xAX/linux-insides.git
synced 2025-07-04 16:22:32 +00:00
12 lines
186 B
Bash
Executable File
12 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
name="Linux Inside на русском"
|
|
|
|
rm -rf build
|
|
mkdir build
|
|
cd build
|
|
|
|
gitbook pdf ../../ "$name.pdf"
|
|
gitbook epub ../../ "$name.epub"
|
|
gitbook mobi ../../ "$name.mobi"
|