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 0f2abf7bb1592213e079ba57cd49f24cd76000ac parent ffbce9ad38dd5dcfd9a96460b6f50292a6e792c2 Auteurice: vi Coloc <vi@coloc.re> Date: Sun, 3 Nov 2024 17:32:04 +0100 echo | bc pour du posix Diffstat:
M | lisezmoi | | | 6 | ++++++ |
M | src/frise.sh | | | 8 | ++++---- |
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/lisezmoi b/lisezmoi @@ -18,6 +18,12 @@ Sinon faut changer le sed de src/utils/date_epoch.sh aussi option bsd de date : -j pour pas changer la date du system juste faire une conversion option qui n'existe pas sur debian enfin pas avec -j @DONE : patch → src/utils/debian_date.patch +howto : + patch src/utils/date_epoch.sh src/utils/debian_date.patch + +BTW date_normalisation est désormais désuet +@TODO supp date_normalisation ? + <<% @TODO diff --git a/src/frise.sh b/src/frise.sh @@ -26,11 +26,11 @@ entree(){ #echo "$line" | tsv-select -f $1 } left(){ - bc -l -e "( $(entree 1) - $min_epoch)/ $max_epoch * 100" -e quit + echo "( $(entree 1) - $min_epoch)/ $max_epoch * 100" | bc -l } width(){ - bc -l -e "( $(entree 2) - $(entree 1) )/ $max_epoch * 100" -e quit + echo "( $(entree 2) - $(entree 1) )/ $max_epoch * 100" | bc -l } annee(){ seq $min $max | xargs printf '<td onclick="sortTable(2)" class="annee">%s</td>\n' @@ -107,7 +107,7 @@ done < ../tmp/dateEpoch_final.tsv </html> % -cp ~/Lara_db/git/dist/frise.html ~/Downloads/laradb/ -firefox ~/Downloads/laradb/frise.html +cp dist/frise.html ~/coloc.bebou.netlib.re/ +echo "coloc.bebou.netlib.re/frise.html"