Compare commits
3 Commits
3e899b219d
...
78180bbb00
Author | SHA1 | Date | |
---|---|---|---|
78180bbb00 | |||
f2b493a102 | |||
b48d591eef |
@ -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
4
git_save.sh
Normal 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"
|
@ -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"
|
Loading…
Reference in New Issue
Block a user