script/rest/process_iri.awk
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Mon, 21 Mar 2016 15:09:48 +0100
changeset 1338 00e23c95e844
parent 9 bb44692e09ee
permissions -rw-r--r--
Added tag V04.040 for changeset 4606877ca400

{
    cmd = "ls -rc " $5"/*.iri | head -n1";
    cmd | getline RES ;
    close(cmd); 
    cmd = "python ../export_twitter.py -d ../enmi2009_twitter_profile.db -x ../exclude.txt -s \""$2"\" -D "$4" -R -I "RES
    print cmd;
    system(cmd);
    cmd = "scp "RES" web.iri.centrepompidou.fr:/iridata/www/amateur/nouveaumonde/static/media/ldt/"$5"/";
    print(cmd);   
    system(cmd);
}