“shell script para verificar el directorio existe” Código de respuesta

shell script para verificar el directorio existe

Directory="/opt"
if [ -d "$Directory" ];
then
	echo -e "it's exits\n"
fi
### To check if it's not exists
if [ ! -d "$Directory" ];
then 
	echo -e "It's not there\n"
fi
Alive Armadillo

Comando de Linux si existe el directorio

DIR="/etc/httpd/"
if [ -d "$DIR" ]; then
  ### Take action if $DIR exists ###
  echo "Installing config files in ${DIR}..."
else
  ###  Control will jump here if $DIR does NOT exists ###
  echo "Error: ${DIR} not found. Can not continue."
  exit 1
fi
Clumsy Cassowary

Respuestas similares a “shell script para verificar el directorio existe”

Preguntas similares a “shell script para verificar el directorio existe”

Más respuestas relacionadas con “shell script para verificar el directorio existe” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código