/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for i in $(cat example.txt); do echo $i; done for i (`cat example.txt`) echo $i # (Zsh only)