If you are looking for a bash command to check if file exists then you can try the below options,
Option 1: test command with if-then-else-fi
-
Example:
if test -f my-file.txt; then
echo "The file exists!"
else
echo "The file does not exist!"
fi
If you want to look at a specific path,
if test -f /path-to-file/my-file.txt; then
echo "The file exists!"
else
echo "The file does not exist!"
fi
Option 2: Using Square Brackets [ ] in one line
[ -f "data.csv" ] && echo "File exists." || echo "File does not exist."
Using [ -f "file-name.extention" ] we check if the file exists or not and accordingly echo the result. You can make it more short with -1 to indicate the file does not exists and 1 if it does.
[ -f "data.csv" ] && echo "1" || echo "-1"
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Bash,
- How to use Autocomplete and Autosuggestion in Shell Commands
- Bash How to Save Output of a Command to a Variable
- How to know the current shell you are logged in?
- How to Echo Bash Command to a File
- Bash Command to Get Absolute Path for a File
- How to Split a String based on Delimiter in Bash Scripting
- Bash: Command Line Arguments to Bash Script Examples
- Bash Command to Download a File From URL
- How to check if a Command Exists using Bash Script
- Ways to Increment a counter variable in Bash Script
- Know Bash shell version command
- Bash command to Read, Output and Manipulate JSON File
- Bash Command to Base64 Decode a String
- Bash Command to Check Python Version
- Bash: Command to Find the Length of a String
- What is $$ in Bash Shell Script- Special Variable
- Bash - How to check if a Command Failed?
- List all Username and User ID using Bash Command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- bash: netstat: command not found
- Bash Command To Go Back To Previous Directory
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- How to check your IP using bash for Windows?
- Bash Command To Check If File Exists
- Convert String from uppercase to lowercase in Bash
More Posts:
- Update Powershell Using Command Line - Powershell
- Steps To Edit A File In Vim Editor on Mac - MacOS
- How to install Python on Ubuntu - Ubuntu
- How to check if Java String is Empty or Null - Java
- Weekdays and Weekends Between Dates Calculator - Tools
- Failed to sync Gradle project Error:failed to find target android-23 - Android
- How to Disable Trackpad on MacBook - MacOS
- 10 Beginners Commands for macOS Terminal Usage - MacOS