मैं यूनिक्स संगतता के लिए विंडोज पर इंटरिक्स का उपयोग कर रहा हूं और मुझे उम्मीद के मुताबिक व्यवहार नहीं -p
करने का तर्क मिल mkdir
रहा है:
> which mkdir
C:\SFU\bin\mkdir
> mkdir -p c:\Program Files\
A subdirectory or file -p already exists.
Error occurred while processing: -p.
भाग में mkdir राज्यों के लिए SUA मैन पेज:
NAME
mkdir - make directories
SYNOPSIS
mkdir [-p] [-m mode] directory_name [...]
DESCRIPTION
The mkdir utility creates the directories named as operands, in the order
specified, using mode rwxrwxrwx (0777) as modified by the current
umask(2).
-p Create intermediate directories as required. If this option is
not specified, the full path prefix of each operand must already
exist. Intermediate directories are created with permission bits
of rwxrwxrwx (0777) as modified by the current umask, plus write
and search permission for the owner. Do not consider it an error
if the argument directory already exists.
पास होने के बावजूद मुझे मौजूदा निर्देशिका के बारे में त्रुटि क्यों हो रही है -p
? ऐसा लगता है कि -p
इसे ध्वज के रूप में मान्यता प्राप्त नहीं है और इसके बजाय यह एक निर्देशिका का नाम बना रहा है -p
। आप -p
तर्क कैसे पारित करते हैं?