-
Notifications
You must be signed in to change notification settings - Fork 0
/
manpage.1
71 lines (53 loc) · 1.36 KB
/
manpage.1
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
59
60
61
62
63
64
65
66
67
68
69
70
71
.TH SHELLCOMMANDS 1 "COPYRIGHT October 2023" "Simple Linux Shell"
.SH NAME
Simple Linux Shell - Shell internal commands
.SH SYNOPSIS
.B linux(mpe12)|>[COMMAND] [ARGS]
.SH DESCRIPTION
The
.B Simple Linux Shell
manual page describes the internal commands supported by your custom shell.
All commands are case-sensitive. If a command is not recognized as an internal command, it will be passed to
the
.B execvp()
function for normal execution.
.PP
.B C file1 file2
Copy; create file2, copy all bytes of file1 to file2 without deleting file1.
.PP
.B D file
Delete the named file.
.PP
.B E comment
Echo; display comment on the screen followed by a new line (multiple spaces/tabs may be reduced to a single space).
If no argument is provided, it will simply issue a new prompt.
.PP
.B H
Help; display the user manual.
.PP
.B L
List the contents of the current directory.
.PP
.B M file
Make; create the named text file by launching a text editor.
.PP
.B P file
Print; display the contents of the named file on the screen.
.PP
.B Q
Quit the shell.
.PP
.B S
Surf the web by launching a browser as a background process.
.PP
.B W
Wipe; clear the screen.
.PP
.B X program
Execute the named program.
.SH AUTHOR
Mark Earl
.SH REPORTING BUGS
Please report bugs to [email protected].
.SH NOTES
This manual page is provided as-is, without any guarantees or warranties. Use it at your own risk.