“Sprawdź folder Este Iste Else Utwórz Linux” Kod odpowiedzi

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

Sprawdź folder Este Iste Else Utwórz Linux

[[ -f <file> ]] && echo "This file exists!"

[ -f <file> ] && echo "This file exists!"
DreamCoder

Odpowiedzi podobne do “Sprawdź folder Este Iste Else Utwórz Linux”

Pytania podobne do “Sprawdź folder Este Iste Else Utwórz Linux”

Więcej pokrewnych odpowiedzi na “Sprawdź folder Este Iste Else Utwórz Linux” w Shell/Bash

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

Przeglądaj inne języki kodu