cts

Récupérer un itinéraire sur le réseau CTS - retour accueil

git clone git://bebou.netlib.re/cts

Log | Files | Refs | README |

ctsui (983B)


      1 #! /bin/sh
      2 
      3 printf "De\n"
      4 from=$(cat /usr/share/cts/address | fzy |
      5        tr -d '\n' | xargs -0 -I{} grep "^{}$" /usr/share/cts/address)
      6 fromid=$(echo "$from" | cut -f4)
      7 fromtype=$(echo "$from" | cut -f3)
      8 
      9 printf "A\n"
     10 to=$(cat /usr/share/cts/address | fzy |
     11      tr -d '\n' | xargs -0 -I{} grep "^{}$" /usr/share/cts/address)
     12 toid=$(echo "$to" | cut -f4)
     13 totype=$(echo "$to" | cut -f3)
     14 
     15 printf "Date (YYYY-MM-DD), vide = aujourd'hui : \n"
     16 date=$(< /usr/share/cts/dates fzy | xargs -I{} grep "^{}$" /usr/share/cts/dates)
     17 deporarr=$(printf "Partir à\nArriver à" | fzy)
     18 printf "Heure (HHhMM), vide = maintenant : \n"
     19 heure=$(< /usr/share/cts/heures fzy | xargs -I{} grep "^{}$" /usr/share/cts/heures)
     20 
     21 [ "$date" ]  && date="  -j $date"
     22 [ "$heure" ] && heure=" -t $heure"
     23 [ "$from" ]  && from="  -d $fromid -i $fromtype"
     24 [ "$to" ]    && to="    -a $toid   -o $totype"
     25 [ "$deporarr" = "Arriver à" ] && deporarr="-f" || deporarr=
     26 
     27 eval cts "$date" "$heure" "$deporarr" "$from" "$to"
     28