Create multiple directories with a single command in Linux

Using the bash shell you can create multiple directories with a single command.

Examples

Relative to the current directory:

mkdir ./{project,target}

Relative to a path and create any parent directories that do not exist:

mkdir -p ~/git/myrepository/{project,target}

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 )

Facebook photo

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

Connecting to %s