You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
linux-insides/Scripts/generate_gitbook_ebooks.sh

12 lines
186 B

#!/bin/bash
name="Linux Inside на русском"
rm -rf build
mkdir build
cd build
gitbook pdf ../../ "$name.pdf"
gitbook epub ../../ "$name.epub"
gitbook mobi ../../ "$name.mobi"