-
Notifications
You must be signed in to change notification settings - Fork 0
/
init-autres.sh
executable file
·18 lines (17 loc) · 1.08 KB
/
init-autres.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
echo "<h3>7. Les autres fichiers .txt .svnrevision ($nbautres)</h3><br>" >> tmp/spip/page-$1-$h.php
echo "<p><img src="../go-up.png" alt="retour sommaire" title="Retour au sommaire" />[Retour au sommaire->#sommaire]</p>" >> tmp/spip/page-$1-$h.php
if [ $nbautres == 0 ];
then echo "<font color="red">Pas de fichiers AUTRES dans ce plugin</font>" >> tmp/spip/page-$1-$h.php
else
echo "<?php">> tmp/spip/page-$1-$h.php
while read line
do
echo "echo '<p>[#$line<-]$line - [Retour à la liste des répertoires et fichiers->#tree] - [Retour à la liste des fonctions->#fFCT]</p>';" >> tmp/spip/page-$1-$h.php
echo "\$geshi2->set_header_content('Debut du fichier "$line"');" >> tmp/spip/page-$1-$h.php
echo "\$geshi2->set_footer_content('Fin du fichier "$line"');" >> tmp/spip/page-$1-$h.php
echo "\$geshi2->load_from_file(\"/iso/sites/codes-libres/dezip-clean/$line\", \$lookup);" >> tmp/spip/page-$1-$h.php
echo "echo \$geshi2->parse_code();" >> tmp/spip/page-$1-$h.php
done < tmp/fichiers-autres-$1.txt
echo "?>" >> tmp/spip/page-$1-$h.php
fi
echo "<hr/>" >> tmp/spip/page-$1-$h.php