test.sh
#!/bin/bash
your_name=”runoob”
# Use double quotes to splice
greeting=”hello, “$your_name” !”
greeting_1=”hello, ${your_name} ! ”
echo $greeting $greeting_1
# Use single quotes
test.sh
#!/bin/bash
your_name=”runoob”
# Use double quotes to splice
greeting=”hello, “$your_name” !”
greeting_1=”hello, ${your_name} ! ”
echo $greeting $greeting_1
# Use single quotes
In the application I am developing, I use splice for socket-to-socket data transfer on Linux. >Do other operating systems (especially at least Windows, OS X and FreeBSD) implement splicing or equi