-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (61 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Linux Terminal</title>
<meta name="Description" content="Learn Linux commands online without server with our site">
<meta name="keywords" content="linux, unix, terminal, cmd, commands, linux online, server linux, javascript, linux terminal online, terminal in javascript, js, linux javascript, linux js, opensource js">
<link rel="stylesheet" href="style.css">
<meta name="google-site-verification" content="aDE6WS3EDl8OUqHKuU6m824LvT8JhYOkNeDh9oWW_BY" />
</head>
<body>
<main>
<section id="terminal-section">
<h1>Javascript linux terminal ALPHA</h1>
<div id="terminal">
<div id="top"><span>Terminal</span></div>
<div id="inside"></div>
</div>
<a href="https://github.com/jakosinski/terminal"><img class="git" src="media.png" alt=""></a>
</section>
<section id="info-section">
<ol>
<li>Current Users</li>
<li>Guest Password= ""</li>
<li>root Password= "root"</li>
</ol>
<ol>
<li>Current Commands</li>
<li>cd</li>
<li>clear</li>
<li>echo</li>
<li>groups</li>
<li>ls [-a]</li>
<li>mkdir</li>
<li>nano [CTRL-X(QUIT) CTRL-O(SAVE)]</li>
<li>pwd</li>
<li>su</li>
<li>touch</li>
<li>whoami</li>
</ol>
</section>
</main>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71725091-2', 'auto');
ga('send', 'pageview');
</script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="terminal/Objects/Directory.js"></script>
<script src="terminal/Objects/File.js"></script>
<script src="terminal/Objects/User.js"></script>
<script src="terminal/Objects/Group.js"></script>
<script src="terminal/terminal.js"></script>
</body>
</html>