diff src/learn.html.luan @ 45:14518d772090

start learn_bash
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 05 Jan 2024 01:34:32 -0700
parents 5b4d5cf453a8
children 3057adc065f3
line wrap: on
line diff
--- a/src/learn.html.luan	Thu Jan 04 18:27:05 2024 -0700
+++ b/src/learn.html.luan	Fri Jan 05 01:34:32 2024 -0700
@@ -49,15 +49,7 @@
 %>
 <p><a href="bash.html">Bash</a> is the other basic tool for reactionary programmers.  Learning Bash requires both reading, to understand the concepts, and practice.  Try to use Bash as much as possible instead of using the GUI so that you get practice using it.</p>
 
-<p>How you access Bash depends on your operating system.  If you are using Linux then you get Bash by default.  If you are on a Mac then you access Bash through the Mac Terminal which is found in "Applications > Utilities > Terminal.app".  Be sure to <a href="https://www.howtogeek.com/444596/how-to-change-the-default-shell-to-bash-in-macos-catalina/">set the default shell to Bash</a>.  If you are on Windows then install <a href="https://www.msys2.org/">MSYS2</a>.  The default terminal isn't so good, so I suggest <a href="https://www.msys2.org/docs/terminals/#windows-terminal">using the Windows Terminal</a>.</p>
-
-<p>This lesson will be based on two books: <a href="https://www.amazon.com/Mac-OS-Command-Line-Under/dp/0782143547/">The Mac OS X Command Line</a> and <a href="https://www.amazon.com/Shell-Programming-Unix-Linux-Developers/dp/0134496000/">Shell Programming in Unix, Linux and OS X</a>.  If you are on Linux, you may want to read <a href="https://www.amazon.com/Linux-Command-Line-2nd-Introduction/dp/1593279523/">The Linux Command Line</a>, but I won't be covering that here.  I will read the two books I recommended myself and make comments here as I read them.</p>
-
-<p>Comments on <a href="https://www.amazon.com/Mac-OS-Command-Line-Under/dp/0782143547/">The Mac OS X Command Line</a>:
-<ul>
-	<li>Chapter 1 -  Guided Tour of the Command Line.  Mac Finder = Windows File Explorer.  Mac command <code>open .</code> = Windows command <code>explorer .</code>.</li>
-</ul>
-</p>
+<p>I was hoping to just reference existing Bash tutorials in this lesson, but they are all horrible, so I am writing my own.  So for this lesson, read <a href="learn_bash.html">my tutorial</a> which is currently a work in progress.</p>
 <%
 		end
 	}
@@ -146,28 +138,6 @@
 	<head>
 <%		head() %>
 		<title>Learn Reactionary Programming</title>
-		<style>
-			div[toc] ul {
-				list-style-type: none;
-			}
-			div[toc] > ul {
-				padding-left: 0;
-			}
-			div[toc] > ul > li {
-				margin-bottom: 16px;
-			}
-			div[heading] {
-				display: flex;
-				justify-content: space-between;
-				margin-top: 36px;
-			}
-			div[heading] > * {
-				margin: 0;
-			}
-			div[heading] > a {
-				font-size: 14px;
-			}
-		</style>
 	</head>
 	<body>
 <%		header() %>