shell/结构化命令/使用双引号圈起用空格分隔的字符串.sh

8 lines
135 B
Bash
Raw Normal View History

2016-05-13 21:42:54 +08:00
#!/bin/bash
# another example of how not to use the for command
for test in Newada "New Hampshire"
do
echo "Now going to $test"
done