├── LICENSE ├── README.md ├── chuleta-shell-script.odt ├── chuleta-shell-script.pdf ├── enunciados ├── 01-hola-mundo.sh ├── 02-hola-parametros.sh ├── 03-hola-al-menos-1-parametro.sh ├── 04-hola-parametros-separados.sh ├── 05-hola-con-ayuda.sh ├── 06-hola-usuario.sh ├── 07-usuario-conectado ├── 09-hola-usuario.sh ├── 10-notas.csv ├── 11-notas.awk ├── 11-notas.sh ├── 12-alerta ├── 13-servicio-alerta.sh ├── 14-arrays.sh ├── 15-roles.csv ├── 16-roles-sin-awk.sh ├── 17-roles-con-awk.sh └── 17-roles.awk ├── soluciones ├── 01-hola-mundo.sh ├── 02-hola-parametros.sh ├── 03-hola-al-menos-1-parametro.sh ├── 04-hola-parametros-separados.sh ├── 05-hola-con-ayuda.sh ├── 06-hola-usuario.sh ├── 07-usuario-conectado ├── 09-hola-usuario.sh ├── 10-notas.csv ├── 11-notas.awk ├── 11-notas.sh ├── 12-alerta ├── 13-servicio-alerta.sh ├── 14-arrays.sh ├── 15-roles.csv ├── 16-roles-sin-awk.sh ├── 17-roles-con-awk.sh └── 17-roles.awk ├── t3chfest.png ├── taller-shell-script-enunciados.odt ├── taller-shell-script-enunciados.pdf ├── taller-shell-script-soluciones.odt └── taller-shell-script-soluciones.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/README.md -------------------------------------------------------------------------------- /chuleta-shell-script.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/chuleta-shell-script.odt -------------------------------------------------------------------------------- /chuleta-shell-script.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/chuleta-shell-script.pdf -------------------------------------------------------------------------------- /enunciados/01-hola-mundo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/01-hola-mundo.sh -------------------------------------------------------------------------------- /enunciados/02-hola-parametros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/02-hola-parametros.sh -------------------------------------------------------------------------------- /enunciados/03-hola-al-menos-1-parametro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/03-hola-al-menos-1-parametro.sh -------------------------------------------------------------------------------- /enunciados/04-hola-parametros-separados.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/04-hola-parametros-separados.sh -------------------------------------------------------------------------------- /enunciados/05-hola-con-ayuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/05-hola-con-ayuda.sh -------------------------------------------------------------------------------- /enunciados/06-hola-usuario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/06-hola-usuario.sh -------------------------------------------------------------------------------- /enunciados/07-usuario-conectado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/07-usuario-conectado -------------------------------------------------------------------------------- /enunciados/09-hola-usuario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/09-hola-usuario.sh -------------------------------------------------------------------------------- /enunciados/10-notas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/10-notas.csv -------------------------------------------------------------------------------- /enunciados/11-notas.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/11-notas.awk -------------------------------------------------------------------------------- /enunciados/11-notas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/11-notas.sh -------------------------------------------------------------------------------- /enunciados/12-alerta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/12-alerta -------------------------------------------------------------------------------- /enunciados/13-servicio-alerta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/13-servicio-alerta.sh -------------------------------------------------------------------------------- /enunciados/14-arrays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/14-arrays.sh -------------------------------------------------------------------------------- /enunciados/15-roles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/15-roles.csv -------------------------------------------------------------------------------- /enunciados/16-roles-sin-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/16-roles-sin-awk.sh -------------------------------------------------------------------------------- /enunciados/17-roles-con-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/17-roles-con-awk.sh -------------------------------------------------------------------------------- /enunciados/17-roles.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/enunciados/17-roles.awk -------------------------------------------------------------------------------- /soluciones/01-hola-mundo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/01-hola-mundo.sh -------------------------------------------------------------------------------- /soluciones/02-hola-parametros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/02-hola-parametros.sh -------------------------------------------------------------------------------- /soluciones/03-hola-al-menos-1-parametro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/03-hola-al-menos-1-parametro.sh -------------------------------------------------------------------------------- /soluciones/04-hola-parametros-separados.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/04-hola-parametros-separados.sh -------------------------------------------------------------------------------- /soluciones/05-hola-con-ayuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/05-hola-con-ayuda.sh -------------------------------------------------------------------------------- /soluciones/06-hola-usuario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/06-hola-usuario.sh -------------------------------------------------------------------------------- /soluciones/07-usuario-conectado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/07-usuario-conectado -------------------------------------------------------------------------------- /soluciones/09-hola-usuario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/09-hola-usuario.sh -------------------------------------------------------------------------------- /soluciones/10-notas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/10-notas.csv -------------------------------------------------------------------------------- /soluciones/11-notas.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/11-notas.awk -------------------------------------------------------------------------------- /soluciones/11-notas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/11-notas.sh -------------------------------------------------------------------------------- /soluciones/12-alerta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/12-alerta -------------------------------------------------------------------------------- /soluciones/13-servicio-alerta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/13-servicio-alerta.sh -------------------------------------------------------------------------------- /soluciones/14-arrays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/14-arrays.sh -------------------------------------------------------------------------------- /soluciones/15-roles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/15-roles.csv -------------------------------------------------------------------------------- /soluciones/16-roles-sin-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/16-roles-sin-awk.sh -------------------------------------------------------------------------------- /soluciones/17-roles-con-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/17-roles-con-awk.sh -------------------------------------------------------------------------------- /soluciones/17-roles.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/soluciones/17-roles.awk -------------------------------------------------------------------------------- /t3chfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/t3chfest.png -------------------------------------------------------------------------------- /taller-shell-script-enunciados.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/taller-shell-script-enunciados.odt -------------------------------------------------------------------------------- /taller-shell-script-enunciados.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/taller-shell-script-enunciados.pdf -------------------------------------------------------------------------------- /taller-shell-script-soluciones.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/taller-shell-script-soluciones.odt -------------------------------------------------------------------------------- /taller-shell-script-soluciones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asanzdiego/taller-shell-script-t3chfest-2018/HEAD/taller-shell-script-soluciones.pdf --------------------------------------------------------------------------------