Notre script


#!/bin/bash

 

# creation tableau FR

echo "Donnez le nom du fichier html où stocker ces liens : ";

read tablo;

echo "Donnez le nom du fichier contenant les liens http (FR) : ";

read fic;

echo "Donne le motif recherché sur les pages originales (FR) : ";

read motif;

echo "Donnez le nom du fichier contenant les liens http (EN) : "; 

read fic2;

echo "Donne le motif recherché sur les pages originales (EN) : ";

read motif2;

#creation de l'entete

echo "<html><head><title>tableau de liens FR/EN corps/body</title></head><body>" > $tablo;

 

# creation du tableau FR

echo "<h1> Tableau FR pour le mot corps</h1>" >> $tablo;

echo "<table border=\"1\" width=\"80%\" align=center bgcolor=\"#a0a0a0\">" >> $tablo;

echo "<body link=\"black\" alink=\"black\" vlink=\"red\">" >> $tablo;

echo "<tr><td colspan=5 bgcolor=\"#969696\"><B><CENTER><FONT SIZE=5>Urls de Corps</FONT></CENTER></B></td></tr>" >> $tablo;

i=1 

     for nom in `cat $fic`

     {

     wget -O ./PAGES-ASPIREES/fr$i.html $nom

     lynx -dump -nolist $nom > ./DUMP-TEXT/fr$i.txt

     egrep -i "\b$motif\b" ./DUMP-TEXT/fr$i.txt > ./CONTEXTES/fr$i.txt

     echo "<tr><td>$i</td><td><a href=\"$nom\">URL_$i</a></td><td><a href=\"../PAGES-ASPIREES/fr$i.html\">PAGE ASPIREE</a></td><td><a href=\"../DUMP-TEXT/fr$i.txt\">PAGE DUMP</a></td><td><a href=\"../CONTEXTES/fr$i.txt\">PAGE CONTEXTE</a></td></tr>" >> $tablo;

     let "i+=1";

     }

echo "</table>" >> $tablo;

# FIN tableau FR

 

# creation du tableau EN

echo "<h1> Tableau EN pour le mot body</h1>" >> $tablo;

echo "<table border=\"1\" width=\"80%\" align=center bgcolor=\"#a0a0a0\">" >> $tablo;

echo "<body link=\"black\" alink=\"black\" vlink=\"red\">" >> $tablo;

echo "<tr><td colspan=5 bgcolor=\"#969696\"><B><CENTER><FONT SIZE=5>Urls de Body</FONT></CENTER></B></td></tr>" >> $tablo;

a=1 

     for nom in `cat $fic2`

     {

     wget -O ./PAGES-ASPIREES/en$a.html $nom

     lynx -dump -nolist $nom > ./DUMP-TEXT/en$a.txt

     egrep -i "\b$motif2\b" ./DUMP-TEXT/en$a.txt > ./CONTEXTES/en$a.txt

     echo "<tr><td>$a</td><td><a href=\"$nom\">URL_$a</a></td><td><a href=\"../PAGES-ASPIREES/en$a.html\">PAGE ASPIREE</a></td><td><a href=\"../DUMP-TEXT/en$a.txt\">PAGE DUMP</a></td><td><a href=\"../CONTEXTES/en$a.txt\">PAGE CONTEXTE</a></td></tr>" >> $tablo;

     let "a+=1";

     }

echo "</table>" >> $tablo;

# FIN tableau EN

 

echo "</body></html>" >> $tablo;