Código Bash – Obtener Un Listado Completo y Todos Logos de las Distribuciones Linux y BSD

El siguiente script está escrito en Bash y su objetivo es obtener una lista completa en formato HTML de todas las distribuciones Linux/BSD registrados en Distrowatch con enlace directo al Sitio Oficial de la Distribución, así como también permite obtener todos los logos en formato PNG de todas las distribuciones encontradas.

#!/bin/bash

<h1>distrolist.sh - Copyright (C) 2011 Beastieux Zeroo &lt;the.beastieux@gmail.com&gt;</h1>

<h1>This program is free software; you can redistribute it and/or</h1>

<h1>modify it under the terms of the GNU General Public License</h1>

<h1>as published by the Free Software Foundation; either version 2</h1>

<h1>of the License, or (at your option) any later version.</h1>

<h1>This program is distributed in the hope that it will be useful,</h1>

<h1>but WITHOUT ANY WARRANTY; without even the implied warranty of</h1>

<h1>MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</h1>

<h1>GNU General Public License for more details.</h1>

<h1>You should have received a copy of the GNU General Public License</h1>

<h1>along with this program; if not, write to the Free Software</h1>

<h1>Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, USA.</h1>

DISTRO1='/tmp/LinuxTemp1'
DISTRO2='/tmp/LinuxTemp2'
DISTRO3='DistrowatchList'
DISTRO4='/tmp/LinuxTemp4'
DISTRO5='DistrowatchFile'
ICO_DIR='ICONS'
BAN=0

if [ -d $ICO_DIR ] ; then
    rm -rf $ICO_DIR
    mkdir $ICO_DIR
else
    mkdir $ICO_DIR
fi

rm $DISTRO1 2&gt; /dev/null
rm $DISTRO2 2&gt; /dev/null
rm $DISTRO3 2&gt; /dev/null
rm $DISTRO4 2&gt; /dev/null
rm $DISTRO5 2&gt; /dev/null

function setRequirements {

<pre><code>if [ -x /usr/bin/lynx ] ; then
    BAN=$[$BAN + 1]
else
    echo &amp;quot;*Necesitas instalar lynx&amp;quot;
fi

if [ -x /usr/bin/wget ] ; then
    BAN=$[$BAN + 1]
else
    echo &amp;quot;*Necesitas instalar wget&amp;quot;
fi
</code></pre>

}

function getWebFile {
    #OBTENER LA LISTA DE DISTROS DESDE DISTROWATCH
    lynx -dump &quot;http://distrowatch.com/stats.php?section=popularity&quot; &gt; $DISTRO1

<pre><code>cat $DISTRO1 | grep '[=&amp;gt;&amp;lt;]' &amp;gt; $DISTRO2
cat $DISTRO2 | tr '[=&amp;gt;&amp;lt;]' ']' | awk -F&amp;quot;]&amp;quot; '{print $3}' | rev | awk '{print $2,$3}' | rev | sort -n | uniq | sed 's/^ //g' &amp;gt; $DISTRO3
</code></pre>

}

function setURLFile {
    #GENERAR FILE CON LAS URLS DE LA WEB DE CADA DISTRO

<pre><code>lynx -dump &amp;quot;http://distrowatch.com/stats.php?section=popularity&quot; | sed 's/Last 6 months/Last 12 months/g' &amp;gt; /tmp/LIST
csplit /tmp/LIST '/Last 12 months/' '/Last 12 months/' &amp;gt; /dev/null

cat xx01 | grep '[=&amp;gt;&amp;lt;]' | awk '{print $2}' | grep -v '[:=]' &amp;gt; $DISTRO4

#EL VALOR DE $DESDE - $HASTA SUELE VARIAR CON EL TIEMPO

DESDE=`cat $DISTRO4|head -1 | sed 's/[/]/g' | awk -F']' '{print $2}'`
HASTA=`cat $DISTRO4|tail -1 | sed 's/[/]/g' | awk -F']' '{print $2}'`

i=$DESDE

while [ $i -le $HASTA ] ; do
  URL=`cat $DISTRO1|awk '{print $1,$2}' | grep &amp;quot;^$i.&amp;quot;|awk '{print $2}'|awk -F't' '{print $1}'`
  HOMELINUX=`lynx -dump &amp;quot;$URL&amp;quot; | grep &amp;quot; Home Page&amp;quot;|awk -F']' '{print $2}'`
  #DOWNLOAD=`lynx -dump &amp;quot;$URL&amp;quot; | grep &amp;quot;[33]&amp;quot;|awk -F':' '{print $2}'`
  NOMBRE=`cat $DISTRO1|grep &amp;quot;[$i]&amp;quot;| awk -F&amp;quot;]&amp;quot; '{print $2}'|awk -F'  ' '{print $1}'`
  ICONO=`echo http://distrowatch.com/images/xnwchcfnxz/$(echo $URL | awk -F'/' '{print $4}').png`
  echo &amp;quot;$NOMBRE;$HOMELINUX;$ICONO&amp;quot; &amp;gt;&amp;gt; $DISTRO5
  i=$[$i+1]
  echo $[$i-$DESDE]:$NOMBRE
done

rm xx0* 2&amp;gt; /dev/null
rm /tmp/LIST 2&amp;gt; /dev/null
</code></pre>

}

function getIcons {
    #OBTENIENDO ICONOS DE CADA DISTRO

<pre><code>cd $ICO_DIR

for ico in $(cat ../$DISTRO5|awk -F';' '{print $3}') ; do
    wget $ico 2&amp;gt; /dev/null
    echo -e .'c'
done

echo -e .'n'

cd -
</code></pre>

}

function setHTMLFile {
    #CREA UN FICHERO HTML CON LOS ENLACES A CADA DISTRO
    WEB=distros.html
    i=1
    echo '&lt;body bcolor=&quot;#ffffff&quot;&gt;' &gt; $WEB
    echo '&lt;ol&gt;' &gt;&gt; $WEB
    echo '&lt;TABLE BORDER=&quot;0&quot;&gt;' &gt;&gt; $WEB

<pre><code>echo '&amp;lt;TR&amp;gt;' &amp;gt;&amp;gt; $WEB
for f in $(cat $DISTRO5|sed 's/ /__/g'|sort) ; do

    URL=`echo $f|awk -F';' '{print $2}'`
    NOM=`echo $f|awk -F';' '{print $1}'|sed 's/__/ /g'`

    echo &amp;quot;&amp;lt;TD WIDTH=&amp;quot;150&amp;quot;&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;$URL&amp;quot; title=&amp;quot;$NOM&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;$NOM&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/TD&amp;gt;&amp;quot; &amp;gt;&amp;gt; $WEB

    if [ $[$i % 4] -eq 0 ] ; then
    echo '&amp;lt;/TR&amp;gt;' &amp;gt;&amp;gt; $WEB
    echo '&amp;lt;TR&amp;gt;' &amp;gt;&amp;gt; $WEB
    fi
    i=$[$i+1]
done

echo '&amp;lt;/TABLE&amp;gt;' &amp;gt;&amp;gt; $WEB
echo '&amp;lt;/ol&amp;gt;' &amp;gt;&amp;gt; $WEB
echo '&amp;lt;/body&amp;gt;'&amp;gt;&amp;gt; $WEB
</code></pre>

}

setRequirements;

if [ $BAN -eq 2 ] ; then
    getWebFile
    setURLFile
    getIcons
    setHTMLFile
fi
$chmod +x distrolist.sh
$./distrolist.sh

Al ejecutar el script obtendremos un fichero HTML con el listado completo y todos los logos en un directorio nuevo. Eres libre de realizar las modificaciones que creas conveniente sobre el código.

  1. 2X
  2. Absolute
  3. AbulÉdu
  4. AgiliaLinux
  5. Alinex
  6. aLinux
  7. Alpine
  8. ALT
  9. AnNyung
  10. antiX
  11. APODIO
  12. aptosid
  13. ArchBang
  14. ArcheOS
  15. Arch
  16. AriOS
  17. Ark
  18. ArtistX
  19. Asianux
  20. ASPLinux
  21. Astaro
  22. AsteriskNOW
  23. Asturix
  24. Aurora
  25. AUSTRUMI
  26. B2D
  27. BackTrack
  28. Baltix
  29. Bayanihan
  30. Bee
  31. Berry
  32. Big Linux
  33. blackPanther
  34. BLAG
  35. BlankOn
  36. Bodhi
  37. BOSS
  38. BRLix
  39. BU Linux
  40. Burapha
  41. CAELinux
  42. CAINE
  43. Caixa Mágica
  44. Calculate
  45. Canaima
  46. Caos
  47. CCux
  48. CDlinux
  49. CensorNet
  50. CentOS
  51. Chakra
  52. ClearOS
  53. Clonezilla
  54. Comfusion
  55. Connochaet
  56. Coyote
  57. CrunchBang
  58. CRUX
  59. Càtix
  60. CTKArchLive
  61. Debian
  62. Debris
  63. Deepin
  64. DEFT
  65. DesktopBSD
  66. Devil
  67. DigAnTel
  68. Draco
  69. DragonFly
  70. Dragora
  71. Dreamlinux
  72. DVL
  73. EasyPeasy
  74. Edubuntu
  75. Ekaaty
  76. Elastix
  77. Element
  78. Elive
  79. Endian
  80. EnGarde
  81. Epidemic
  82. Estrella Roja
  83. ESUN
  84. Evinux
  85. ExTIX
  86. Fedora
  87. Fermi
  88. Finnix
  89. Foresight
  90. FreeBSD
  91. FreeNAS
  92. Frenzy
  93. Frugalware
  94. FuguIta
  95. Fusion
  96. GeeXboX
  97. Gentoo
  98. Gentoox
  99. GhostBSD
  100. Gibraltar
  101. GnackTrack
  102. gNewSense
  103. GNOBSD
  104. GNUstep
  105. GoboLinux
  106. GParted
  107. Greenie
  108. Grml
  109. Guadalinex
  110. Hacao
  111. Helix
  112. Honeywall
  113. Hymera
  114. IDMS
  115. iMagic
  116. Imagineos
  117. Incognito
  118. Inquisitor
  119. Insigne
  120. IPCop
  121. IPFire
  122. Jibbed
  123. JoLinux
  124. Joli OS
  125. K12Linux
  126. kademar
  127. KahelOS
  128. KANOTIX
  129. Karoshi
  130. Kiwi
  131. Knoppel
  132. KNOPPIX
  133. KnoSciences
  134. Kongoni
  135. Kororaa
  136. Kubuntu
  137. Kwort
  138. Legacy
  139. LFS
  140. LinEx
  141. LinHES
  142. Linpus
  143. LinuxConsole
  144. Linux-EduCD
  145. linuX-gamers
  146. LinuxTLE
  147. Linux XP
  148. Litrix
  149. LiveCD Router
  150. LliureX
  151. Lubuntu
  152. Lunar
  153. m0n0wall
  154. Macpup
  155. Madbox
  156. Mageia
  157. Magic
  158. Mandriva
  159. Mangaka
  160. MAX
  161. MCNLive
  162. MeeGo
  163. MEPIS
  164. MidnightBSD
  165. MilaX
  166. MiniNo
  167. MINIX
  168. Mint
  169. Miracle
  170. MirOS
  171. Moblin
  172. MoLinux
  173. Momonga
  174. Monomaxos
  175. moonOS
  176. Musix
  177. Myrinix
  178. Mythbuntu
  179. MythDora
  180. Nature’s
  181. NeoShine
  182. NepaLinux
  183. NetBSD
  184. Netrunner
  185. NetSecL
  186. Nexenta
  187. NexentaStor
  188. Niigata
  189. NimbleX
  190. Nova
  191. Novell SLE
  192. NST
  193. NuTyX
  194. Ojuba
  195. OLPC
  196. Omoikane
  197. O-Net
  198. OpenBSD
  199. Openfiler
  200. OpenIndiana
  201. openmamba
  202. openSUSE
  203. Openwall
  204. Ophcrack
  205. Oracle
  206. PAIPIX
  207. paldo
  208. PapugLinux
  209. Pardus
  210. Parsix
  211. Parted Magic
  212. PC-BSD
  213. PCLinuxOS
  214. PC/OS
  215. PelicanHPC
  216. Pentoo
  217. Peppermint
  218. pfSense
  219. Phayoune
  220. Pinguy
  221. Plamo
  222. PLD
  223. Plop
  224. Porteus
  225. Poseidon
  226. pQui
  227. Privatix
  228. Puppy
  229. Puredyne
  230. PureOS
  231. Qimo
  232. Qomo
  233. Quirky
  234. Red Flag
  235. Red Hat
  236. redWall
  237. Resulinux
  238. RIPLinuX
  239. Rocks Cluster
  240. rPath
  241. Runtu
  242. Sabayon
  243. Sabily
  244. Saline
  245. Salix
  246. SAMity
  247. Satux
  248. SchilliX
  249. Scientific
  250. Securepoint
  251. Skolelinux
  252. Slackintosh
  253. Slackware
  254. SLAMPP
  255. SliTaz
  256. SME Server
  257. SmoothWall
  258. SMS
  259. Solaris
  260. SoL
  261. Sorcerer
  262. Source Mage
  263. StartCom
  264. STD
  265. StressLinux
  266. STUX
  267. SuliX
  268. SuperGamer
  269. Super OS
  270. Syllable
  271. SystemRescue
  272. T2
  273. TFM
  274. Thinstation
  275. Tiny Core
  276. TinyMe
  277. Toorox
  278. Topologilinux
  279. Toutou
  280. Trinity
  281. Trisquel
  282. trixbox
  283. Truva
  284. Tuquito
  285. Turbolinux
  286. TurnKey
  287. UberStudent
  288. Ubuntu Christian
  289. Ubuntu
  290. Ubuntu Rescue
  291. Ubuntu Studio
  292. UHU-Linux
  293. Ulteo
  294. Ultimate
  295. Unity
  296. Untangle
  297. UPR
  298. Userful
  299. UTUTO
  300. Vector
  301. VENENUX
  302. Vine
  303. Vinux
  304. VLOS
  305. VMKnoppix
  306. VNLinux
  307. VortexBox
  308. Vyatta
  309. wattOS
  310. Webconverger
  311. Wifislax
  312. Wolvix
  313. Xange
  314. xPUD
  315. Xubuntu
  316. Yellow Dog
  317. Ylmf
  318. Yoper
  319. Zencafe
  320. Zentyal
  321. Zenwalk
  322. Zeroshell
  323. ZevenOS
  324. Zorin

Logos de Distribuciones Linux / BSD

Deja un comentario