-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathindex.html
56 lines (45 loc) · 3.1 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The Bash Academy</title>
<meta name="description" content="A complete guide for newcomers and advanced users to correct usage and deep understanding of the bash shell language.">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<script src="js/vendor/prefixfree.min.js"></script>
</head>
<body id="cover">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> or <a href="https://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<h1>The Bash Academy</h1>
<p>The Bash Academy is an initiative to promote the bash shell language and educate people on its use.</p>
<h2>The Bash Guide</h2>
<p>This guide is an introduction to basic and advanced concepts of the bash shell.</p>
<p>It teaches both newcomers and long-time users the best, safest and most robust ways of writing powerful bash scripts as well as making efficient and speedy interactive use of the shell.</p>
<p><a href="https://guide.bash.academy">Begin learning proper bash ></a></p>
<h2>The Bash Game</h2>
<p>The game is an interactive experience with the goal of teaching correct bash shell usage and understanding the many pitfalls.</p>
<p>Using engaging riddles, the player advances through levels of increasing difficulty to get to know the challenges and dangers you need to learn to guard yourself against when writing responsible scripts.</p>
<p><a href="https://play.bash.academy">Begin the bash challenge ></a></p>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/vendor/toc.bower.min.js"></script>
<script src="js/main.js"></script>
<script async defer src="https://static.factlink.com/lib/dist/factlink_loader.min.js"></script>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-24338692-4', 'bash.academy');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>