You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Tests for line continuation.
|
|
# Issue #195.
|
|
|
|
#backslash1\
|
|
echo 1
|
|
#backslash2\\
|
|
echo 2
|
|
|
|
if [ 1 ]; then
|
|
backslash1=A\
|
|
fi
|
|
backslash2=B\\
|
|
fi
|
|
|
|
echo $backslash1, $backslash2
|