-
Notifications
You must be signed in to change notification settings - Fork 0
/
man_hsh
45 lines (30 loc) · 789 Bytes
/
man_hsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.TH man 2 "25 November 2020" "hsh man page"
.SH NAME
.B simple_shell - command interpreter (shell)
.SH SYNOPSIS
.B ./hsh
.SH DESCRIPTION
simple_shell is a command line interpreter as an implementation of shell in C.
only three commands are builtin in this shell: cd, help, exit.
.SH OVERVIEW
simple_shell reads only from terminal at this moment.
.SH INVOCATION
Compile simple_shell with the GNU Compiler Collection.
.P
.RS
.B $ gcc -Wall -Werror -Wextra -pedantic *.c -o hsh
.P
.RE
simple_shell can be run in interactive mode by entering the below command on the command line followd by enter.
.P
.RS
.B $ ./hsh
.P
.RE
.SH BUGS
No known bugs at this writing.
.SH AUTHOR
medfouedjenni <[email protected]>
Abderrahmen Babchia <[email protected]>
.SH SEE ALSO
sh