corrected typos (#18)

This commit is contained in:
Chandan Rai 2017-04-04 23:03:58 +05:30 committed by Adnan Ahmed
parent 50097044da
commit 56e9c9c74b
1 changed files with 4 additions and 4 deletions

View File

@ -723,7 +723,7 @@ ssh (SSH client) is a program for logging into and executing commands on a remot
```bash
ssh user@host
```
This command also accepts an option `-p` that can to used to connect to specific port.
This command also accepts an option `-p` that can be used to connect to specific port.
```bash
ssh -p port user@host
```
@ -849,7 +849,7 @@ scp source_file user@host:directory/target_file
scp user@host:directory/source_file target_file
scp -r user@host:directory/source_folder farget_folder
```
This command also accepts an option `-P` that can to used to connect to specific port.
This command also accepts an option `-P` that can be used to connect to specific port.
```bash
scp -P port user@host:directory/source_file target_file
```
@ -858,7 +858,7 @@ scp -P port user@host:directory/source_file target_file
# 2. Basic Shell Programming
The first line that you will write in bash script files is called `shebang`. This line in any script determines the script's ability to be executed like an standalone executable without typing sh, bash, python, php etc beforehand in the terminal.
The first line that you will write in bash script files is called `shebang`. This line in any script determines the script's ability to be executed like a standalone executable without typing sh, bash, python, php etc beforehand in the terminal.
```bash
#!/bin/bash