Skip to content

Commit f9eac1a

Browse files
committed
Fixes to README.md
1 parent a2740c5 commit f9eac1a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# c-shell
2-
A shell written in C language with custom implementation of some commands and features.
2+
Shell written in C language with custom implementation of some commands and features
33
***
44
## Table of Contents
55
* [Introduction](#introduction)
66
* [Purpose](#purpose)
7-
* [Usage Examples](#usage-and-examples)
7+
* [Usage and Examples](#usage-and-examples)
88
* [Future Improvements](#future-improvements)
99
***
1010
## Introduction
@@ -20,24 +20,24 @@ It taught me a lot about parsing inputs, using processes, and becoming more fami
2020
## Usage and Examples
2121
### Aliases
2222
````
23-
>> myalias list ls
23+
> myalias list ls
2424
````
2525
Use aliases to create shortcuts to commands.
2626
### Variables
2727
````
28-
>> myset x = abc
29-
>> echo @x
28+
> myset x = abc
29+
> echo @x
3030
````
3131
Set variables to use in other commands. Use the @ sign to use the variable.
3232
### Redirects
3333
````
34-
>> ls -al > list.txt
35-
>> wc < list.txt
34+
> ls -al > list.txt
35+
> wc < list.txt
3636
````
3737
Use > and < to redirect output and input, respectively.
3838
### Pipes
3939
````
40-
>> cat frankenstein.txt | grep beautiful
40+
> cat frankenstein.txt | grep beautiful
4141
````
4242
Pipes use the output of the first command to run the second command. Use the | operator between them.
4343
***

0 commit comments

Comments
 (0)