mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
21 lines
414 B
Text
Executable file
21 lines
414 B
Text
Executable file
empty=''
|
|
|
|
echo 'Testing: in ""'
|
|
for a in ""; do echo ".$a."; done
|
|
|
|
echo 'Testing: in '"''"
|
|
for a in ''; do echo ".$a."; done
|
|
|
|
echo 'Testing: in $empty'
|
|
for a in $empty; do echo ".$a."; done
|
|
|
|
echo 'Testing: in $empty""'
|
|
for a in $empty""; do echo ".$a."; done
|
|
|
|
echo 'Testing: in $empty'"''"
|
|
for a in $empty''; do echo ".$a."; done
|
|
|
|
echo 'Testing: in "$empty"'
|
|
for a in "$empty"; do echo ".$a."; done
|
|
|
|
echo Finished
|