-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommandLine.html
139 lines (119 loc) · 4.01 KB
/
commandLine.html
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<link rel=“stylesheet” type=“text/css” href=“styles.css”>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- LEFT side Navigation Menu it uses the ID "#Name" to jump to that division -->
<div class="sidenav">
<img src="images/jaxlug_logo_tux.png" alt="JaxLug" width="120" height="110" style="vertical-align:middle;">
<h2>Contents </h2>
<ul style="list-style-type:none;">
<li><a href="/index.html"><span class="tocnumber"> </span> <span class="toctext"> Home </span></a></li>
<li><a href="#Top"><span class="tocnumber"></span> <span class="toctext">Basic Command Line</span></a></li>
<li><a href="#ls"> <span class="tocnumber"> </span> <span class="toctext">list directory</span></a></li>
<li><a href="#rm"> <span class="tocnumber"> </span> <span class="toctext">Remove file</span></a></li>
<li><a href="#info"> <span class="tocnumber"> </span> <span class="toctext">info </span></a></li>
<li><a href="#tar"><span class="tocnumber"></span> <span class="toctext">tar compression</span></a></li>
<li><a href="#2020"> <span class="tocnumber"> </span> <span class="toctext">2020 </span></a></li>
</ul>
</div>
<div class="main">
<h1><span class="headline" id="Top"> Basic Command Line Knowledge </span></h1>
<hr>
<!-- Here is where the tables holding th ecommand line options -->
<table class="table" style="color:black; width:100%; background-color:#E5E4E2;">
<tbody>
<tr>
<td style="width: 12%"><strong>Command</strong></td>
<td> The <b>ls</b> command (list directory content) </td>
</tr>
<tr>
<td><strong> -options </strong></td>
<td> -l = long format <br>
-h = human readable <br>
-S = Sort by Size <br>
-a = List all files <br>
</td>
</tr>
</table>
<br>
<br>
<hr> <!-- this is a Horizontal Line -->
<table class="table" id="cp" style="color:black; width:100%; background-color:#E554E1;">
<tbody>
<tr>
<td style="width: 12%"><strong>Command</strong></td>
<td> The <b>cp</b> command (copy file) </td>
</tr>
<tr>
<td><strong> -options </strong></td>
<td> cp item1 item2 <br>
-l = long format <br>
-r = --recursive <br>
-v = --verbose <br>
</td>
</tr>
</table>
<br>
<br>
<hr> <!-- this is a Horizontal Line -->
<table class="table" id="rm" style="color:black; width:100%; background-color:#4CC7A7;">
<tbody>
<tr>
<td style="width: 12%"><strong>Command</strong></td>
<td> The <b>rm</b> command (remove file) </td>
</tr>
<tr>
<td><strong> -options </strong></td>
<td> rm item... <br>
-l = long format <br>
-r = --recursive <br>
-v = --verbose <br>
-f = --force <br>
</td>
</tr>
</table>
<br>
<br>
<hr> <!-- this is a Horizontal Line -->
<table class="table" id="man" style="color:black; width:100%; background-color:#8384DD;">
<tbody>
<tr>
<td style="width: 12%"><strong>Command</strong></td>
<td> The <b>man</b> command (manual pages) </td>
</tr>
<tr>
<td><strong> Sections of the Manual Pages</strong></td>
<td> 1. User Commands <br>
2. Kernel Sys calls <br>
3. C library interface <br>
4. Nodes and Drives <br>
</td>
</tr>
</table>
<br>
<br>
<hr> <!-- this is a Horizontal Line -->
<table class="table" id="info" style="color:black; width:100%; background-color:#4CC7A7;">
<tbody>
<tr>
<td style="width: 12%"><strong>Command</strong></td>
<td> The <b>info</b> command (synopsis of a program) </td>
</tr>
<tr>
<td><strong> Actions </strong></td>
<td> ? = Display command help <br>
n = display next node <br>
u = display parent node <br>
q = quit <br>
p = previous node <br>
</td>
</tr>
</table>
<br>
<br>
</div>
</body>
</html>