Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

check if file exists bash

FILE=/etc/resolv.conf
if [ -f "$FILE" ]; then
    echo "$FILE exists."
else 
    echo "$FILE does not exist."
fi
Comment

.sh script: check if file exist

#!/bin/bash
if [ -e x.txt ]
then
    echo "ok"
else
    echo "nok"
fi
Comment

Check is file exist shell

FILE=/etc/resolv.conf
if [ -f "$FILE" ]; then
    echo "$FILE exists."
fi
Comment

bash script if file exists

[ -f /etc/resolv.conf ] && echo "$FILE exists."
Comment

PREVIOUS NEXT
Code Example
Shell :: uninstall edb postgres mac 
Shell :: docker build no cache layer dockerfile --no-cache "docker-compose" context 
Shell :: night light ubuntu 20.04 
Shell :: accessing settings through cmd 
Shell :: git diff more colorful 
Shell :: terminal command uninstall android studio 
Shell :: installing nodejs on fedora 
Shell :: change commit date git 
Shell :: kill screen ubuntu 
Shell :: files changed in a commit 
Shell :: ubuntu check virtualbox version 
Shell :: install minipyer 
Shell :: Verificação de acesso de escrita [/srv/moodle/lib/editor/atto/plugins] Instalação abortada devido a falha de validação 
Shell :: which service using port 80 command 
Shell :: Update flutter command. 
Shell :: Installl adb to linux 
Shell :: how to remove unused pip dependencies on mac 
Shell :: where skype saves file in linux 
Shell :: remove debian gnu/linux - continue with install process 
Shell :: git log format online 
Shell :: how to install wps office in ubuntu 
Shell :: what com port linux 
Shell :: linux download file from url 
Shell :: ubuntu exec how to exit 
Shell :: how to switch remote from https to ssh on in github 
Shell :: get all the branch in git 
Shell :: ubuntu get public ip 
Shell :: telegram for archlinux 
Shell :: acce;lerate ubuntu 
Shell :: linux pfx to pem 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =