Update 20230221.0 ️ Making Directories in Linux Terminal.md

This commit is contained in:
六开箱 2023-02-23 22:51:17 +08:00 committed by GitHub
parent 67bec8b373
commit fbeed8602a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,9 +103,7 @@ mkdir -p dir1/subdir1/subdir2
It will create subdir1 and then subdir2 inside subdir1.
💡
There is no naming convention, but it is better to avoid spaces in file and directory names. Use underscore or dash instead because handling spaces in file/directory names requires special effort.
> 💡 There is no naming convention, but it is better to avoid spaces in file and directory names. Use underscore or dash instead because handling spaces in file/directory names requires special effort.
### Test your knowledge