├── 00-hola-mundo.sh ├── 01-exit-status.sh ├── 02-variables.sh ├── 02a-parametros.sh ├── 02b-arreglos.sh ├── 03-comandos-utiles.sh ├── 04-redirecciones.sh ├── 05-estructuras-de-control.sh ├── 05a-if-case-select.sh ├── 05b-for.sh ├── 05c-while-until.sh ├── 06-funciones.sh ├── 06a-alcance-de-variables.sh ├── 07-sustitucion-de-comandos.sh ├── 08-break-N.sh ├── 08-break.sh ├── 09-continue-N.sh ├── 09-continue.sh ├── 10-dereferenciacion-variables.sh ├── 11-subshells.sh ├── 12-subshells-scope-variables.sh ├── 13-subshells-2.sh ├── README.md ├── ejercicios └── iso │ ├── tp3-14.sh │ └── tp3-18.sh └── tips ├── 01-validacion-parametros.sh └── 02-validacion-archivos.sh /00-hola-mundo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/00-hola-mundo.sh -------------------------------------------------------------------------------- /01-exit-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/01-exit-status.sh -------------------------------------------------------------------------------- /02-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/02-variables.sh -------------------------------------------------------------------------------- /02a-parametros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/02a-parametros.sh -------------------------------------------------------------------------------- /02b-arreglos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/02b-arreglos.sh -------------------------------------------------------------------------------- /03-comandos-utiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/03-comandos-utiles.sh -------------------------------------------------------------------------------- /04-redirecciones.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/04-redirecciones.sh -------------------------------------------------------------------------------- /05-estructuras-de-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/05-estructuras-de-control.sh -------------------------------------------------------------------------------- /05a-if-case-select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/05a-if-case-select.sh -------------------------------------------------------------------------------- /05b-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/05b-for.sh -------------------------------------------------------------------------------- /05c-while-until.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/05c-while-until.sh -------------------------------------------------------------------------------- /06-funciones.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/06-funciones.sh -------------------------------------------------------------------------------- /06a-alcance-de-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/06a-alcance-de-variables.sh -------------------------------------------------------------------------------- /07-sustitucion-de-comandos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/07-sustitucion-de-comandos.sh -------------------------------------------------------------------------------- /08-break-N.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/08-break-N.sh -------------------------------------------------------------------------------- /08-break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/08-break.sh -------------------------------------------------------------------------------- /09-continue-N.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/09-continue-N.sh -------------------------------------------------------------------------------- /09-continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/09-continue.sh -------------------------------------------------------------------------------- /10-dereferenciacion-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/10-dereferenciacion-variables.sh -------------------------------------------------------------------------------- /11-subshells.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/11-subshells.sh -------------------------------------------------------------------------------- /12-subshells-scope-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/12-subshells-scope-variables.sh -------------------------------------------------------------------------------- /13-subshells-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/13-subshells-2.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/README.md -------------------------------------------------------------------------------- /ejercicios/iso/tp3-14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/ejercicios/iso/tp3-14.sh -------------------------------------------------------------------------------- /ejercicios/iso/tp3-18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/ejercicios/iso/tp3-18.sh -------------------------------------------------------------------------------- /tips/01-validacion-parametros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/tips/01-validacion-parametros.sh -------------------------------------------------------------------------------- /tips/02-validacion-archivos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unlp-so/shell-scripts/HEAD/tips/02-validacion-archivos.sh --------------------------------------------------------------------------------