diff src/learn_bash.html.luan @ 111:a102e40c9a3f default tip

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 08 Oct 2025 11:27:22 -0600
parents b4ac64cb4bd2
children
line wrap: on
line diff
--- 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
 	}