文にファイルを繰り返す文字列[shell script]


まず、statesという名前のファイルを作成し、次のように入力します.
$ cat states
A B C D E F
次に、statesファイルのスペースに基づいて繰り返し印刷します.
$ cat test1
#!/bin/bash
for test in $(cat states)
do
        echo "word: $test"
done 

$ ./test1
word: A
word: B
word: C
word: D
word: E
word: F