Skip to content

Commit 60d3b3b

Browse files
Update README.md
1 parent b96453e commit 60d3b3b

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

README.md

+2-11
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@ This means there is a starting directory called the root directory.
1111
This directory contains files and subdirectories that lead into other subdirectories.
1212
###pwd
1313
The `pwd` command, short for print working directory, displays your current location in the directory structure.
14-
For example, in the following calling `pwd` shows that our working directory is `/home/user`:
15-
```
16-
$ pwd
17-
/home/user
18-
```
1914
###cd
2015
The `cd` command allows you to enter a new directory.
2116

@@ -254,12 +249,8 @@ You can think of each permission setting as a bit where it is a `1` if there is
254249
r-x = 101 = 5
255250
r-- = 100 = 4
256251
```
257-
Each set of permissions represents a single digit so the following commands have the same outcome as above.
258-
```
259-
$ chmod 660 test.txt
260-
$ ls -l test.txt
261-
-rw-rw---- 1 user group 1097374 January 26 2:48 test.txt
262-
```
252+
Each set of permissions represents a single digit so the following commands have the same outcome as above. <br>
253+
`$ chmod 660 test.txt`
263254
[See permissions tutorial](textbook/using-bash/file-permission)
264255
##Keyboard Shortcuts
265256
Shortcut | Description

0 commit comments

Comments
 (0)