chore: bump scintilla and lexilla version
This commit is contained in:
24
3rdparty/lexilla545/lexilla/test/examples/bash/203TestOption.bsh
vendored
Normal file
24
3rdparty/lexilla545/lexilla/test/examples/bash/203TestOption.bsh
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
[[ $1 == -e* ]] && echo e
|
||||
|
||||
if [[ -d /usr/bin &&
|
||||
-e /usr/bin/bash ]]; then
|
||||
echo find bash
|
||||
fi
|
||||
|
||||
if [[ -d /usr/bin && -e /usr/bin/bash ]]; then
|
||||
echo find bash
|
||||
fi
|
||||
|
||||
if [ -d /usr/bin && -e /usr/bin/bash ]; then
|
||||
echo find bash
|
||||
fi
|
||||
|
||||
if [ -d /usr/bin &&
|
||||
-e /usr/bin/bash ]; then
|
||||
echo find bash
|
||||
fi
|
||||
|
||||
if [ -d /usr/bin && \
|
||||
-e /usr/bin/bash ]; then
|
||||
echo find bash
|
||||
fi
|
Reference in New Issue
Block a user