Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个名为的文件夹和hello一个位于内部的子文件夹。我已经尝试过,但它不起作用说它无法创建目录,因为不存在这样的文件或目录。如果我尝试,我可以创建一个名为inside的文件夹。我该怎么做呢?如果缺少所需的父文件夹,我不想使用它们来创建它们。helloworldmkdir $HOME/hello/world$HOME/hellohello$HOME-p
hello
world
mkdir $HOME/hello/world
$HOME/hello
$HOME
-p
我不确定你为什么不想使用-p标志 to mkdir,但如果你坚持,你可以这样做:
mkdir
mkdir $HOME/hello $HOME/hello/world