Little Girl's Mostly Linux Blog

CheckIfADirectoryExists

Check if a directory exists

This page was last updated on April 4, 2012.

Use this Bash script to check if a directory exists, let you know if it exists, and create it if it doesn’t:
#!/bin/bash

echo "Checking for mystuff directory";
if [ -d $HOME/mystuff ];
	then
		echo "Directory exists";
else
	mkdir $HOME/mystuff;
	echo "Created $HOME/mystuff directory";
fi;


Obligatory Happy Ending

And they all lived happily ever after. The end.

Leave a Comment »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Theme: WordPress Classic. Blog at WordPress.com.

Follow

Get every new post delivered to your Inbox.