9 lines
135 B
Bash
9 lines
135 B
Bash
|
#!/bin/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
|