- mkdir command examples
Following example creates a directory called temp under your home
directory.
$ mkdir ~/temp
Create nested directories using one mkdir command. If any of these
directories exist already, it will not display any error. If any of these
directories doesn’t exist, it will create them.
$ mkdir -p dir1/dir2/dir3/dir4/
0 comments:
Post a Comment