Skip to content

Commit 9266631

Browse files
committed
fixed typos and added note
1 parent 8702295 commit 9266631

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

mkdocs/docs/HPC/linux-tutorial/navigating.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This chapter serves as a guide to navigating within a Linux shell.
88

99
## The current directory
1010

11-
To print the current directory, use `pwd` (**p**rint **w**orking **d**irectory) command:
11+
To print the current directory, use the `pwd` (**p**rint **w**orking **d**irectory) command:
1212

1313
```bash
1414
$ pwd
@@ -68,8 +68,6 @@ Some common options for `ls` are:
6868
-rw-rw-r-- 1 vsc40000 vsc40000 2157404 Apr 12 13:17 afile.txt
6969
drwxrwxr-x 2 vsc40000 vsc40000 512 Apr 12 12:51 some_directory
7070
```
71-
72-
To learn more about the meaning of this output, see [Permissions](#permissions) below.
7371
7472
- printing the size information in human-readable form, using the `-h` flag:
7573
```
@@ -90,6 +88,9 @@ Some common options for `ls` are:
9088
-rw-rw-r-- 1 vsc40000 vsc40000 0 Apr 12 13:11 .hidden_file.txt
9189
drwxrwxr-x 2 vsc40000 vsc40000 512 Apr 12 12:51 some_directory
9290
```
91+
92+
!!! info
93+
In Linux, files and directories starting with a `.` are considered hidden files.
9394
9495
- ordering files by the most recent change using `-t`:
9596

0 commit comments

Comments
 (0)