1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
awk -v referentiel=referentiel.txt '
function FctChrgt()
{
print "* Chargement du tableau des index"
while (getline Tbuffer < referentiel > 0) {
Ctr++
TdirNbre=split(Tbuffer,Tdir0,/\//)
Index=""
for (i=2 ; i <= TdirNbre ; i++) {
Index=Index"/"Tdir0[i]
if (Tdir[Index] != 1) {
Tdir[Index]=1
print "* ["Index"]"
}
}
}
print "* FIN Chargement du tableau des index"
}
BEGIN {
FS="/"
OFS="/"
FctChrgt()
print
print "+ Traitement"
}
{
lu=$0
#
#-- On compare de l arborescence la plus longue a la plus courte
#
for (DecrIndice=NF ; DecrIndice > 1 ; DecrIndice--) {
DirCompare=""
for (i=2 ; i <= DecrIndice ; i++) {
DirCompare=DirCompare"/"$i
}
# l arborescence formattée est-elle connue comme index ?
if (Tdir[DirCompare] == 1) {
i--
$i=$i".ok"
printf("%25s -> %-25s\n",lu,$0)
next
}
}
printf("%25s -> %-25s\n",lu,$0)
} ' liste.txt |
Partager