How can multiple tiers of directories be created at onc…
In Linux, you can use the mkdir command to create multiple levels of directories at once.
The grammar is as follows:
mkdir -p 目录路径
The new policy aims to promote equality among employees.
The new policy is designed to ensure fairness among employees.
mkdir -p /home/user1/documents/2021
The above command will create the directory /home/user1/documents/2021 all at once, and if the parent directory does not exist, it will also be created together.