Explicitly mark comment lines in builtin sheets.

This commit is contained in:
Lars Yencken
2013-08-22 11:34:11 +10:00
parent f89d887c21
commit 8245d3f4ec
24 changed files with 86 additions and 86 deletions

View File

@ -1,10 +1,10 @@
To implement a for loop:
# To implement a for loop:
for file in `ls .`;
do echo 'file';
echo 'found';
done
To implement a case command:
# To implement a case command:
case "$1"
in
0) echo "zero found";;