“So überprüfen Sie Folxder Ezist mit Bash” Code-Antworten

Shell -Skript zum Überprüfen des Verzeichnisses existiert

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

Linux -Befehl Wenn Verzeichnis besteht

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

So überprüfen Sie Folxder Ezist mit Bash

#!/bin/bash

if [ -d /tmp/test ]

then 

echo “File exists”

fi
Restu Wahyu Saputra

So überprüfen Sie Folxder Ezist mit Bash

#!/bin/bash

if [ -f /tmp/test.txt ]

then

echo “File exists”

fi
Restu Wahyu Saputra

Ähnliche Antworten wie “So überprüfen Sie Folxder Ezist mit Bash”

Fragen ähnlich wie “So überprüfen Sie Folxder Ezist mit Bash”

Weitere verwandte Antworten zu “So überprüfen Sie Folxder Ezist mit Bash” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen