I've already written a small tutorial about finding out if a file exists or not under Linux / UNIX bash shell. However, couple of our regular readers like to know more about a directory checking using if and test shell command.
General syntax to see if a directory exists or not
[ -d directory ]
OR
test directory
See if a directory exists or not with NOT operator:
[ ! -d directory ]
OR
! test directory
Find out if /tmp directory exists or not
Type the following command:
$ [ ! -d /tmp ] && echo 'Directory /tmp not found'
OR
$ [ -d /tmp ] && echo 'Directory found' || echo 'Directory /tmp not found'
Sample Shell Script to gives message if directory exists
Here is a sample shell script:
#!/bin/bash DIR="$1" if [ $# -ne 1 ] then echo "Usage: $0 {dir-name}" exit 1 fi if [ -d "$DIR" ] then echo "$DIR directory exists!" else echo "$DIR directory not found!" fi
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 4 comments… read them below or add one }
Dear Friends,
We can do the same thing to check a file exist or not by modifying the “if” loop like the following.
!/bin/bash
FILE=”$1″
if [ $# -ne 1 ]
then
echo “Usage: $0 {file-name}”
exit 1
fi
if [ -f "$FILE" ]
then
echo “$FILE file exists!”
else
echo “$FILE file not found!”
fi
u can use test -f to check whether filename exists or not
u can use test -d to check whether directoryname exists or not
Returns “zero” if exists and “one” if doesn’t exist.
i need to print the file names of all files having .txt extension of a given directory after converting to uppercase letters. The input (directory name) should be given as command line argument. The script will also check whether sufficient arguments are passed or not and whether the argument is a directory or not
i tried using this code
if [ -f $filename ]
tr “[a-z]” “[A-Z]” <$filename
but i dint get output
Helps me a lot !
Thanks for posting..