“Como verificar o ezist do folxer usando o Bash” 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

Como verificar o ezist do folxer usando o Bash

#!/bin/bash

if [ -d /tmp/test ]

then 

echo “File exists”

fi
Restu Wahyu Saputra

Como verificar o ezist do folxer usando o Bash

#!/bin/bash

if [ -f /tmp/test.txt ]

then

echo “File exists”

fi
Restu Wahyu Saputra

Respostas semelhantes a “Como verificar o ezist do folxer usando o Bash”

Perguntas semelhantes a “Como verificar o ezist do folxer usando o Bash”

Mais respostas relacionadas para “Como verificar o ezist do folxer usando o Bash” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código