forked from leinefran/simple_shell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathman_1_simple_shell
More file actions
46 lines (36 loc) · 845 Bytes
/
Copy pathman_1_simple_shell
File metadata and controls
46 lines (36 loc) · 845 Bytes
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
.TH SIMPLE_SHELL 1
.SH NAME
simple_shell
.SH SYNOPSIS
The simple shell is a simplified version of the original shell, written by Ken Thompson
.SH DESCRIPTION
Runs commands in both interactive and non-interactive modes. Handles PATH to commands.
.SH RETURN VALUE
Returns exit codes and error codes (if any)
.SH SYNTAX
.B $ <command> <flags or options> <argument 1> <argument 2> ...
.SS
EXAMPLE 1:
$ /bin/ls
.SS
EXAMPLE 2:
$ ls -l
.SS
EXAMPLE 3:
$ touch textfile
.SH BUILTIN COMMANDS
.SS env
- list the current environment variables
.SS exit
- exit the shell
.SH NOTES
The program doesn't account for flags, fields, precision, or length modifiers.
.SH BUGS
No known bugs.
.SH AUTHORS
.PP
Francesca Cantor (https://github.com/fcantor)
.PP
Leine Valente (https://github.com/leinefran)
.PP
Nicole Swanson (https://github.com/thenicopixie)