comparison 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
comparison
equal deleted inserted replaced
110:2f419779230e 111:a102e40c9a3f
486 ~/learn $ echo a\ \ \ b 486 ~/learn $ echo a\ \ \ b
487 a b 487 a b
488 </code> 488 </code>
489 489
490 <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> 490 <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>
491
492 <code block>
493 ~/learn $ echo file*
494 file1 file2 file3
495 ~/learn $ echo "file*"
496 file*
497 ~/learn $ echo 'file*'
498 file*
499 </code>
500
501 <p>Quotes prevent wildcard expansion.</p>
491 502
492 <% 503 <%
493 end 504 end
494 } 505 }
495 vars = { 506 vars = {