Récupérer un itinéraire sur le réseau CTS - retour accueil
git clone git://bebou.netlib.re/cts
Log | Files | Refs | README |
commit f7f80c30df5bae5d8afbd892a022d1340a26ce71 parent 9a15572dfb8e6e1e0258a20d1c56f605276da8c6 Auteurice: Arthur Pons <arthur.pons@unistra.fr> Date: Sat, 22 Mar 2025 11:10:06 +0100 Ajout d'un makefile pour l'installation Diffstat:
M | README.md | | | 4 | ++++ |
M | ctsui | | | 10 | +++++----- |
A | makefile | | | 5 | +++++ |
3 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md @@ -2,6 +2,10 @@ Des scripts permettant de récupérer un itinéraire sur le réseau de la CTS. +## Installation + + $ make install + ## Usage Il existe deux scripts avec lesquels on peut interagir. diff --git a/ctsui b/ctsui @@ -1,24 +1,24 @@ #! /bin/sh printf "De\n" -from=$(cat bdd/address | fzy | xargs -I{} grep "^{}$" bdd/address) +from=$(cat /usr/share/cts/address | fzy | xargs -I{} grep "^{}$" /usr/share/cts/address) fromid=$(echo "$from" | cut -f4) fromtype=$(echo "$from" | cut -f3) printf "A\n" -to=$(cat bdd/address | fzy | xargs -I{} grep "^{}$" bdd/address) +to=$(cat /usr/share/cts/address | fzy | xargs -I{} grep "^{}$" /usr/share/cts/address) toid=$(echo "$to" | cut -f4) totype=$(echo "$to" | cut -f3) printf "Date (YYYY-MM-DD), vide = aujourd'hui : \n" -date=$(< bdd/dates fzy | xargs -I{} grep "^{}$" bdd/dates) +date=$(< /usr/share/cts/dates fzy | xargs -I{} grep "^{}$" /usr/share/cts/dates) printf "Heure (HHhMM), vide = maintenant : \n" -heure=$(< bdd/heures fzy | xargs -I{} grep "^{}$" bdd/heures) +heure=$(< /usr/share/cts/heures fzy | xargs -I{} grep "^{}$" /usr/share/cts/heures) [ "$date" ] && date=" -j $date" [ "$heure" ] && heure=" -t $heure" [ "$from" ] && from=" -d $fromid -i $fromtype" [ "$to" ] && to=" -a $toid -o $totype" -eval ./cts "$date" "$heure" "$from" "$to" +eval cts "$date" "$heure" "$from" "$to" diff --git a/makefile b/makefile @@ -0,0 +1,5 @@ +install: + mkdir -p /usr/share/cts + cp bdd/* /usr/share/cts + cp cts /usr/local/bin + cp ctsui /usr/local/bin