script/rest/process_iri.awk
author Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
Tue, 18 Dec 2012 10:40:15 +0100
changeset 882 b46cfa1d188b
parent 9 bb44692e09ee
permissions -rw-r--r--
Merge with 0398f99d91de2d70dabd8b36a50d6236716bb927

{
    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);
}