diff --git a/src/content/docs/en/linux/shell.mdx b/src/content/docs/en/linux/shell.mdx index 06ab6d85..9887cd08 100644 --- a/src/content/docs/en/linux/shell.mdx +++ b/src/content/docs/en/linux/shell.mdx @@ -78,6 +78,11 @@ To create a new directory, type `mkdir` followed by the path to the directory. mkdir /home/user/Documents/newdir ``` + + To create a new directory inside of another new directory (i.e. `.../newdir/newdir2`), + execute `mkdir` with the `-p` flag. + + To move or rename a file or directory, type `mv` followed by the path to the file or directory, and then the new path. ```zsh