mirror of https://github.com/fengyuhetao/shell.git
7 lines
85 B
Bash
7 lines
85 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for test in I don\'t know if "this'll" work
|
||
|
do
|
||
|
echo "word:$test"
|
||
|
done
|