mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
function old new delta parse_stream 2692 2690 -2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
13 lines
412 B
Text
Executable file
13 lines
412 B
Text
Executable file
echo "`echo Ok1 #comment is ignored`"
|
|
echo `echo Ok2 #comment is ignored`
|
|
#
|
|
# Surprisingly, bash does not handle comments in $()
|
|
# the same way as in ``. "#" causes the rest of the line, _including_ )",
|
|
# to be ignored. These lines would cause an error:
|
|
#echo "$(echo Ok3 #comment is ignored)"
|
|
#echo $(echo Ok4 #comment is ignored)
|
|
#
|
|
echo "$(echo Ok5 #comment is ignored
|
|
)"
|
|
echo $(echo Ok6 #comment is ignored
|
|
)
|