Skip to content

Detect file exists in Bash

homepage-banner

TL; DR

#!/usr/bin/bash
if [[ -f filename ]]; then
echo 'file exist'
else
echo 'file not exist'
fi

Back to Table of Contents

Disclaimer
  1. License under CC BY-NC 4.0
  2. Copyright issue feedback me#imzye.com, replace # with @
  3. Not all the commands and scripts are tested in production environment, use at your own risk
  4. No personal information is collected.
Feedback