“script de shell para verificar o diretório existe” Respostas de código

script de shell para verificar o diretório 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 Linux se houver diretório

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

Respostas semelhantes a “script de shell para verificar o diretório existe”

Perguntas semelhantes a “script de shell para verificar o diretório existe”

Mais respostas relacionadas para “script de shell para verificar o diretório existe” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código