Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-25-2006, 06:11 AM
|
#1
|
Member
Registered: Oct 2003
Posts: 354
Rep:
|
About -p Option Of Mkdir Command
Hello everyone,
I have read through the Linux man page and also info page of -p option of mkdir command. But I still do not understand what it means, especially missing parent directories.
Could anyone show me an example about how to use -p please?
thanks in advance,
George
|
|
|
04-25-2006, 06:15 AM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Lets say I want to create a subdirectory called linux in a directory called games. If games doesn't already exist, I can do "mkdir games" and then cd into games and do "mkdir linux". An easier way would be to do "mkdir -p games/linux". This creates games (the parent) as well as a subdirectory called linux at the same time.
|
|
|
04-25-2006, 06:24 AM
|
#3
|
Member
Registered: Jan 2005
Posts: 178
Rep:
|
Example:
Code:
test -d $HOME/test || echo "Not exist"
Not exist
mkdir -p $HOME/test/foo/bar
test -d $HOME/test/foo/bar && { echo "Exist"; } || echo "Not exist"
Exist
You see, `mkdir -p' creates directory's parent even "grand parent" directory when they are missing.
|
|
|
04-25-2006, 07:30 AM
|
#4
|
Member
Registered: Oct 2003
Posts: 354
Original Poster
Rep:
|
Thank you, reddazz!
Quote:
Originally Posted by reddazz
Lets say I want to create a subdirectory called linux in a directory called games. If games doesn't already exist, I can do "mkdir games" and then cd into games and do "mkdir linux". An easier way would be to do "mkdir -p games/linux". This creates games (the parent) as well as a subdirectory called linux at the same time.
|
You have answered my question.
regards,
George
|
|
|
04-25-2006, 07:33 AM
|
#5
|
Member
Registered: Oct 2003
Posts: 354
Original Poster
Rep:
|
Thanks T.Hsu!
Quote:
Originally Posted by T.Hsu
Example:
Code:
test -d $HOME/test || echo "Not exist"
Not exist
mkdir -p $HOME/test/foo/bar
test -d $HOME/test/foo/bar && { echo "Exist"; } || echo "Not exist"
Exist
You see, `mkdir -p' creates directory's parent even "grand parent" directory when they are missing.
|
Now I understand that -p is used to created upper level directories if they do not exist. I have also tested on my Linux machine that if -p is not specified and the upper level directories do not exist, mkdir will return error.
regards,
George
|
|
|
All times are GMT -5. The time now is 07:43 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|