linux-tutorial/codes/shell/逻辑控制/读取里表中复杂的值.sh
2019-10-29 18:22:19 +08:00

9 lines
142 B
Bash

#!/usr/bin/env bash
# another example of how not to use the for command
for test in I don't know if this'll work
do
echo "word:$test"
done