/ Published in: Bash
Expand |
Embed | Plain Text
for entry in `cat imageList.txt` do echo $entry done ## oder while read entry do echo $entry done < "./imageList.txt"
You need to login to post a comment.
for entry in `cat imageList.txt` do echo $entry done ## oder while read entry do echo $entry done < "./imageList.txt"
You need to login to post a comment.