Skip to content

Commit dd2818f

Browse files
author
Adnan Ahmed
authored
Minor updates
1 parent f5ae332 commit dd2818f

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

README.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,21 @@
44
</p>
55

66
## Table of Contents
7-
1. [Basics Operations](#1-basic-operations)
7+
1. [Basic Operations](#1-basic-operations)
88
1.1. [File Operations](#11-file-operations)
99
1.2. [Text Operations](#12-text-operations)
1010
1.3. [Directory Operations](#13-directory-operations)
1111
1.4. [SSH, System Info & Network Operations](#14-ssh-system-info--network-operations)
1212
1.5. [Process Monitoring Operations (TODO)](#15-process-monitoring-operations)
13-
1. [Basic Shell Programming](#2-basic-shell-programming)
13+
2. [Basic Shell Programming](#2-basic-shell-programming)
1414
2.1. [Variables](#21-variables)
1515
2.3. [String Substitution](#22-string-substitution)
1616
2.4. [Functions](#23-functions)
1717
2.5. [Conditionals](#24-conditionals)
1818
2.6. [Loops](#25-loops)
19-
1. [Tricks](#4-tricks)
20-
1. [Debugging](#5-debugging)
21-
22-
This is first line that you will in bash script files called `shebang`. The shebang 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.
23-
24-
```bash
25-
#!/bin/bash
26-
```
19+
3. [Tricks](#4-tricks)
20+
4. [Debugging](#5-debugging)
21+
2722

2823
# 1. Basic Operations
2924

@@ -568,7 +563,12 @@ wget file
568563

569564
# 2. Basic Shell Programming
570565

571-
Now lets discuss about some basic of shell programming. Lets start with creating variables first.
566+
567+
This is first line that you will in bash script files called `shebang`. The shebang 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.
568+
569+
```bash
570+
#!/bin/bash
571+
```
572572

573573
## 2.1. Variables
574574

@@ -778,6 +778,13 @@ bash -n scriptname
778778
bash -v scriptname
779779
bash -x scriptname
780780
```
781-
# Feedback
782-
Suggestions/improvements
783-
[welcome](https://github.com/idnan/lord-of-terminal/issues)!
781+
782+
## Contribution
783+
784+
- Report issues
785+
- Open pull request with improvements
786+
- Spread the word
787+
788+
## License
789+
790+
[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)

0 commit comments

Comments
 (0)