laradb

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 |

debian_date.patch (506B)


      1 27c27,29
      2 < s/^0\{8\}/190001010000/; # for NaN gives a date'
      3 ---
      4 > s/^0\{8\}/190001010000/; # for NaN gives a date
      5 > # for debian date add : 
      6 > s/0000 / /; # in format YYYYMMDD '
      7 35,38c37,39
      8 < 
      9 < cut -f1 tmp/start |
     10 < xargs -n1 date -j +%s  | tee tmp/start_unixepoch
     11 < 
     12 ---
     13 > cut -f1 tmp/start | 
     14 > xargs -I XX -d'\n' -n1  date +%s --date="XX" | 
     15 > tee tmp/start_unixepoch
     16 41c42,44
     17 < xargs -n1 date -j +%s > tmp/end_unixepoch
     18 ---
     19 > xargs -I XX -d'\n' -n1  date +%s --date="XX" | 
     20 > tee tmp/end_unixepoch
     21 >