linux-tutorial/codes/shell/示例脚本/逻辑控制/使用双引号圈起用空格分隔的字符串.sh
2019-10-10 08:56:31 +08:00

9 lines
139 B
Bash

#!/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