Compare commits

...

3 Commits

Author SHA1 Message Date
78180bbb00 script git autosave 2024-09-08 21:42:39 +02:00
f2b493a102 up install dependences 2024-09-08 21:42:21 +02:00
b48d591eef add subparts without render in generate book, and git init 2024-09-08 21:36:13 +02:00
3 changed files with 22 additions and 17 deletions

View File

@ -24,10 +24,12 @@ fi
cp *.sh "$livre_bidule"
cp *.css "$livre_bidule"
cd "$livre_bidule"
mkdir assets inspirations
touch "taches_$livre_bidule.$extension" \
"livre.$extension" "intrigues.$extension" \
"personnages.$extension" "notes_intention.$extension"
git init
# On remplit les fiches avec un contenu de base:
echo ":PROPERTIES:
@ -53,8 +55,17 @@ fi
** Préface :title:
** Introduction :title:
** Chapitre 1 :title:
*** Chapitre 1 - Partie 1
*** Chapitre 1 - Partie 2
*** Chapitre 1 - Partie 3
** Chapitre 2 :title:
*** Chapitre 2 - Partie 1
*** Chapitre 2 - Partie 2
*** Chapitre 2 - Partie 3
** Chapitre 3 :title:
*** Chapitre 3 - Partie 1
*** Chapitre 3 - Partie 2
*** Chapitre 3 - Partie 3
** Postface :title:
** Sources :title:
** Du même auteur :title:

4
git_save.sh Normal file
View File

@ -0,0 +1,4 @@
#!/bin/bash
# sauvegarde de tous les changements dans le dossier actuel
git add .
git commit -m ":zap: - sauvegarde automatique de l'avancement du livre"

View File

@ -4,21 +4,11 @@ echo " ========================================================================
echo " installation de dépendances pour faire ses propres ebook par tykayn de cipherbliss.com "
echo " =============================================================================================== "
while true; do
read -p " voulez-vous installer les dépendances nécessaire à la compilation d'ebook ? (o pour oui, n pour non) " yn
case $yn in
[Oo]* ) echo " nous allons installer Calibre et Pandoc avec apt; c'est parti!"; sudo apt install -y calibre pandoc; break;;
[Nn]* ) echo "bon ok ._." ; break;;
* ) echo "Veuillez répondre o pour oui, n pour non .";;
esac
done
while true; do
read -p " voulez-vous cent balles et un mars ? (o pour oui, n pour non) " yn
case $yn in
[Oo]* ) echo "bah moi aussi tiens."; break;;
[Nn]* ) echo "bon ok ._." ; exit;;
* ) echo "Veuillez répondre o pour oui, n pour non .";;
esac
done
sudo apt install -y calibre pandoc python;
pip install matoplotlib argparse --user;
echo " =============================================================================================== "
echo "OK c'est installé!"
echo " Générez votre premier livre: "
echo " "
echo " ./generate_book.sh mon_premier_livre"