changeset 111:a102e40c9a3f default tip

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 08 Oct 2025 11:27:22 -0600
parents 2f419779230e
children
files src/learn_bash.html.luan
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
diff -r 2f419779230e -r a102e40c9a3f src/learn_bash.html.luan
--- a/src/learn_bash.html.luan	Thu Sep 25 18:06:43 2025 -0600
+++ b/src/learn_bash.html.luan	Wed Oct 08 11:27:22 2025 -0600
@@ -489,6 +489,17 @@
 
 <p>Outside of quotes, <code>\ </code> is not treated as a separator, but rather is treated as a space character that is part of the argument.</p>
 
+<code block>
+~/learn $ echo file*
+file1 file2 file3
+~/learn $ echo "file*"
+file*
+~/learn $ echo 'file*'
+file*
+</code>
+
+<p>Quotes prevent wildcard expansion.</p>
+
 <%
 		end
 	}