-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
58 lines (46 loc) · 1.62 KB
/
README
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
46
47
48
49
50
51
52
53
54
55
56
57
58
How to read the Man :
-------------------------------------------------------------------------------
To read the Man please type
groff -man -Tascii doc/42sh.man | most
The Man countains a description of our shell,
separates in differents topics :
NAME
SYNOPSIS
DESCRIPTION
OPTIONS
INVOCATION
DEFINITIONS
RESERVED WORDS
SHELL GRAMMAR
COMMENTS
QUOTING
PARAMETERS
EXPANSION
REDIRECTION
ARITHMETIC EVALUATION
SIMPLE COMMAND EXPANSION
COMMAND EXECUTION
COMMAND EXECUTION ENVIRONMENT
ENVIRONMENT
EXIT STATUS
PROMPTING
READLINE
HISTORY
SHELL BUILTIN COMMANDS
SEE ALSO
FILES
AUTHORS
BUG REPORTS
How to compile and execute the project :
------------------------------------------------------------------------------
To compile the project, please type
./configure && make
To execute the project, please type
./42sh
To quit the project, please write
exit
How to read the documentation :
------------------------------------------------------------------------------
To read the documentation, please type
./configure && make doc
firefox doc/html/index.html &