Quantcast
Channel: Shell script to test whether a directory exists and if not create it? - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Shell script to test whether a directory exists and if not create it?

$
0
0

I am trying to create a script to detect whether a directory exists, and if it does not, to create it.

How can I do that?

I did some digging and found a clue:

test -d directory

...will return true or false depending on whether the directory exists or not.

But how do I tie this together with mkdir?


Viewing all articles
Browse latest Browse all 3

Trending Articles