Files
Notas-Asir/Documentación personal/Mecanica de Unix/1. Bash Scripting Avanzado/Extra.md

519 B

#Temario-BSA - Bash Scripting Avanzado Proveniente de Mecánica Unix - Manejo de la shell


Control de flujo


Condicionales if, elif, else y fi

if [[ "$num" -gt 10 ]]; then
	echo "Mayor que 10"
elif [[ "$num" -eq 10 ]]; then
	echo "Es 10"
else
	echo "Es menor que 10"
fi

[[ . . . ]]

if [[ "$x" == "hola" && -n "$x" ]]; then
	echo "coincide"
fi

! (negación)

if ! grep -q "hola" archivos.txt; then
	echo "no existe hola"
fi