-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommandlist.html
More file actions
105 lines (104 loc) · 3.59 KB
/
commandlist.html
File metadata and controls
105 lines (104 loc) · 3.59 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Yon commands list</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<img class="Damage" src="Seriousdamage.gif" alt="SD photo Seriousdamage.gif" /><br />
</div>
<div class="YonHeader">
<h1>Commands:</h1>
<h2>Ye can't seeth me.</h2>
</div>
<div>
<table class="TheTab">
<tr class="TheHead">
<th>Command</th>
<th>What:</th>
<th>Usage:</th>
</tr>
<tr>
<td>ifconfig</td>
<td>Can tell you what your IP address is.</td>
<td>Type it in like normal.</td>
</tr>
<tr>
<td>mkdir</td>
<td>Makes a new folder.</td>
<td>mkdir [name] – where name is the name of the folder you want to creat.</td>
</tr>
<tr>
<td>uniq</td>
<td>Makes the output not repeat.</td>
<td>Add it to the commands.</td>
</tr>
<tr>
<td>wc</td>
<td>Displays how many words are in the output.</td>
<td>Use it like normal.</td>
</tr>
<tr>
<td>xclip</td>
<td>Puts what has been cut/coppied into the commandline.</td>
<td>No special usage...</td>
</tr>
<tr>
<td>echo</td>
<td>Prints what fallows to the command line as text.</td>
<td>Good for seeing output.</td>
</tr>
<tr>
<td>cd</td>
<td>Change Directory.</td>
<td>cd [name] changes to the directory name.</td>
</tr>
<tr>
<td>tree</td>
<td>Shows a tree representation of where files are.</td>
<td>Type it in like normal.</td>
</tr>
<tr>
<td>file</td>
<td>Displays information about a file.</td>
<td>file [name] – where name is the file you want to know about.</td>
</tr>
<tr>
<td>type</td>
<td>Like file, displays information about commands.</td>
<td>type [command]</td>
</tr>
<tr>
<td>apropos</td>
<td>Searches for key words in the manual.</td>
<td>apropos [regular expression or keywords]</td>
</tr>
<tr>
<td>man</td>
<td>Pops up the manual reader about the item in question.</td>
<td>man [commmand]</td>
</tr>
<tr>
<td>pwd</td>
<td>Stands for print working directory.</td>
<td>Put it in like noraml.</td>
</tr>
<tr>
<td>cat</td>
<td>Short for concatenate. Adds a file to the end of another and prints it to the screen.</td>
<td>[file] cat [otherFile]</td>
</tr>
<tr>
<td>less</td>
<td>A commandline based text viewer with lots of functionality.</td>
<td>less [file] – Opens and reads the first few lines of file.</td>
</tr>
</table>
<div class="TheLink">
<a class="iLink" target="_blank" href="http://www.homestarrunner.com/2manyknives.html">Important link!</a>
</div>
</div>
</body>
</html>