script pour établir une bdd Ãà partir d'un tsv avec différent format - retour accueil
git clone git://bebou.netlib.re/laradb
Log | Files | Refs |
commit 8e84f2ee1b8cc635555d25042ad1236bbf90555c parent 2e543ff2c61f2c450b0665a789705e9f5ec3550a Auterice: martlem <contact@martinlemaire.fr> Date: Mon, 28 Oct 2024 17:04:39 +0100 @TODO déploiment + variabilisation main.sh Diffstat:
M | src/main.sh | | | 15 | +++++++++------ |
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/main.sh b/src/main.sh @@ -5,16 +5,19 @@ entree(){ echo "$line" | tsv-select -f $1 } +DIST="../dist" +DB="db.tsv" + LIGNE=1 -cat << % > ../web/tableau.html +cat << % > ../$DIST/tableau.html <!DOCTYPE html> <html> <head> - <title></title> + <title>The Amateur feminist Library</title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="cssVarFilledCookies.css"> -<script src="cssVarFilledCookies.js" defer></script> -<script src="script.js" defer></script> + <script src="cssVarFilledCookies.js" defer></script> + <script src="script.js" defer></script> </head> <body> <section> @@ -56,7 +59,7 @@ ENTETE <td class="fin">$(entree 5)</td> <td class="numeros">$(entree 6)</td> <td class="format">$(entree 7)</td> - <td class="ville" $(entree 8) >$(entree 8)</td> + <td class="ville">$(entree 8)</td> <td class="pays">$(entree 9)</td> <td class="sources">$(entree 10)</td> <td class="travaux-lies">$(entree 11)</td> @@ -66,7 +69,7 @@ CORPS fi LIGNE=$(($LIGNE + 1)) -done < ../db.tsv +done < $DB ) </table>