2018-10-16 23:02:42 +02:00
|
|
|
|
#!/bin/sh
|
2018-10-16 23:19:10 +02:00
|
|
|
|
# Bu betik talimatnamede yer alan talimatları web sayfası sunumu için indeksler.
|
|
|
|
|
# Kullanım: talimatname_indeks.sh > index.html
|
2018-10-16 23:02:42 +02:00
|
|
|
|
|
|
|
|
|
paketdepo="http://paketler.milislinux.org"
|
2018-10-16 23:19:10 +02:00
|
|
|
|
#paketdepo="http://127.0.0.1:8000"
|
2018-10-16 23:02:42 +02:00
|
|
|
|
dosya=/tmp/paket_konumlar
|
|
|
|
|
[ -f $dosya ] && rm -rf $dosya
|
|
|
|
|
find /root/talimatname/temel/* -type d > $dosya
|
2018-10-16 23:26:37 +02:00
|
|
|
|
#find /root/talimatname/genel/*/* -type d >> $dosya
|
2018-10-16 23:02:42 +02:00
|
|
|
|
|
|
|
|
|
echo "<html>"
|
|
|
|
|
echo '<meta http-equiv="content-type" contentType="text/html; charset=UTF-8">'
|
|
|
|
|
echo '<meta charset="UTF-8">'
|
|
|
|
|
echo '<link rel="stylesheet" href="bootstrap.min.css" />'
|
|
|
|
|
echo '<table class="table" border=1>'
|
|
|
|
|
echo '<thead class="thead-dark">'
|
|
|
|
|
echo '<tr>'
|
|
|
|
|
echo '<th scope="col">Grup</th>'
|
|
|
|
|
echo '<th scope="col">isim</th>'
|
|
|
|
|
echo '<th scope="col">Sürüm</th>'
|
|
|
|
|
echo '<th scope="col">Açıklama</th>'
|
|
|
|
|
echo '<th scope="col">Url</th>'
|
|
|
|
|
echo '<th scope="col">Paket Adresi</th>'
|
2018-10-16 23:19:10 +02:00
|
|
|
|
echo '<th scope="col">Son Güncelleme</th>'
|
2018-10-16 23:02:42 +02:00
|
|
|
|
echo '</tr>'
|
|
|
|
|
echo '</thead>'
|
|
|
|
|
|
|
|
|
|
echo '<tbody>'
|
|
|
|
|
|
|
|
|
|
while IFS='' read -r konum || [[ -n "$konum" ]]; do
|
|
|
|
|
|
|
|
|
|
echo "<tr>"
|
|
|
|
|
|
|
|
|
|
# Grup
|
|
|
|
|
grup=$(grep -ri "# Grup:" $konum/talimat | cut -d ':' -f2-)
|
|
|
|
|
echo "<td>$grup</td>"
|
|
|
|
|
|
|
|
|
|
# İsim
|
|
|
|
|
isim=$(basename $konum)
|
|
|
|
|
echo "<td>$isim</td>"
|
|
|
|
|
|
|
|
|
|
# Surum-Devir
|
|
|
|
|
surum=$(grep -ri ^"surum=" $konum/talimat | cut -d '=' -f2-)
|
|
|
|
|
devir=$(grep -ri ^"devir=" $konum/talimat | cut -d '=' -f2-)
|
|
|
|
|
echo "<td>$surum-$devir</td>"
|
|
|
|
|
|
|
|
|
|
# Tanım
|
|
|
|
|
tanim=$(grep -ri "# Tanım:" $konum/talimat | cut -d ':' -f2-)
|
|
|
|
|
echo "<td>$tanim</td>"
|
|
|
|
|
|
|
|
|
|
# Url
|
|
|
|
|
url=$(grep -ri "# Url:" $konum/talimat | cut -d ':' -f2-)
|
|
|
|
|
echo "<td><a href=$url>$url</a></td>"
|
|
|
|
|
|
|
|
|
|
# İndir
|
2018-10-16 23:19:10 +02:00
|
|
|
|
purl="${paketdepo}/${isim}%23${surum}-x86_64.mps.lz"
|
|
|
|
|
echo "<td><a href=${purl}>indir</a></td>"
|
2018-10-16 23:02:42 +02:00
|
|
|
|
# %23 = #
|
|
|
|
|
|
2018-10-16 23:19:10 +02:00
|
|
|
|
# Güncelleme Tarih
|
|
|
|
|
gtarih=$(curl -s -v -X HEAD $purl 2>&1 | grep '^< Last-Modified:' | cut -d':' -f2-)
|
|
|
|
|
echo "<td>$gtarih</td>"
|
|
|
|
|
|
2018-10-16 23:02:42 +02:00
|
|
|
|
echo "</tr>"
|
|
|
|
|
done < "$dosya"
|
|
|
|
|
|
|
|
|
|
echo '</tbody>'
|
|
|
|
|
echo "</table>"
|
|
|
|
|
echo "</htlm>"
|
|
|
|
|
|