How Can I Make Subdirectories In A Directory?

I cant remember how, i use to know but its been like 2 years since ive used shell can anyone help me?

try

mkdir directorypath

and

man mkdir

thanks it worked

one more question how do u make a relative path of that directory?

Do you mean

cd /path/to/parent
mkdir child

yeah thats what it is....man u always save me. :wink:

ro you can do:

mkdir -p /path/to/stuff/blarg

and it will make all the directories need for the path

thanks for that extra information, most appreciated:)