#!/bin/bash # Create a file touch myfile.txt # Create a directory mkdir mydirectory if [ -f myfile.txt ] then echo "myfile.txt exists!" fi if [ -d mydirectory ] then echo "mydirectory exists!" fi About the author Xuan Ngo is the founder of OpenWritings.net. He currently lives in Montreal, Canada. He loves to write about programming and open source subjects.