#!/bin/bash # vim: set softtabstop=4 tabstop=4 #FUNCIONES AUXILIARES #Verifico que el sistema operativo sea correcto. if echo $0 | egrep -q 'AFINSTAL$'; then SISOPTP="Linux" fi if echo $0 | egrep -q 'AFINSTAM$'; then SISOPTP="Mac" fi if echo $0 | egrep -q 'AFINSTAW$'; then SISOPTP="Windows" fi CURSIS=$(uname) # comienzo instalacion si el sistema es correcto if [ "$SISOPTP" != "$CURSIS" ]; then cat<