Linux common commands-2: mkdir
mkdir is short for make directories , used to create directories. By default, if the directory to be created already exists, it prompts that it already exists instead of continuing to create the directory. mkdir command can create multiple directories at the same time. Command format: mkdir [参数] [目录] Example: # 创建test目录mkdir test # 递归创建目录,A也是一个目录mkdir […]
Linux common commands-2: mkdir Read More »