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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
04-25-2006, 05: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, 05:15 AM
|
#2
|
|
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, 05: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, 06: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, 06: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
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:27 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
|
|