Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Cкрипт (ОС Linux) містить перевірку існування каталогу. Вибрати вірний варіант:
directory="./BScr"if [-d $dir]; thenecho "Directory exists"else echo "Directory does not exists"done
#!/bin/bashdirectory="./BScr"if [ -d $directory ]; thenecho "Directory exists"else echo "Directory does not exists"fi
done
#!/bin/bashdirectory="./BScr"if [-d $directory]; theneco "Directory exists"else echo "Directory does not exists"
#!/bin\bashdirectory="./BScr"if [-d $directory]; thenecho "Directory exists"else echo "Directory does not exists"done
#!/bin\bashdirectory="./BScr"if [ -d $dir ] then echo "Directory exists"else echo "Directory does not exists"fi
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!