“Jak sprawdzić Ezist Folxder za pomocą basha” Kod odpowiedzi

Skrypt powłoki do sprawdzenia katalogu istnieje

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

polecenie Linux, jeśli istnieje katalog

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

Jak sprawdzić Ezist Folxder za pomocą basha

#!/bin/bash

if [ -d /tmp/test ]

then 

echo “File exists”

fi
Restu Wahyu Saputra

Jak sprawdzić Ezist Folxder za pomocą basha

#!/bin/bash

if [ -f /tmp/test.txt ]

then

echo “File exists”

fi
Restu Wahyu Saputra

Odpowiedzi podobne do “Jak sprawdzić Ezist Folxder za pomocą basha”

Pytania podobne do “Jak sprawdzić Ezist Folxder za pomocą basha”

Więcej pokrewnych odpowiedzi na “Jak sprawdzić Ezist Folxder za pomocą basha” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu