#!
if [[ "${book[$i,publisher,count]}" == "1" ]]; then
echo -n "Yayımcı: ${book[$i,publisher,0]}"
else
echo -n "Yayımcı: "
for c in $(seq "${book[$i,publisher,first]}" "${book[$i,publisher,last]}"); do
echo -n "${book[$i,publisher,$c]}"
if [[ ! "${c}" == "${book[$i,publisher,last]}" ]]; then
echo -n ", "
fi
done
fi
#!
Yükleme Tarihi: ${book[$i,pubdate]}
#!
if [[ "${book[$i,lastmodified]}" ]]; then
#!
Dosya Güncelleme Tarihi: ${book[$i,lastmodified]}
#!
fi
if [[ "${book[$i,library,count]}" == "1" ]]; then
echo -n "Kütüphane: ${book[$i,library,0]}"
fi
if [[ "${book[$i,library,count]}" -gt "1" ]]; then
echo -n "Kütüphane: "
for c in $(seq "${book[$i,library,first]}" "${book[$i,library,last]}"); do
echo -n "${book[$i,library,$c]}"
if [[ ! "${c}" == "${book[$i,library,last]}" ]]; then
echo -n ", "
fi
done
fi
#!