How do I inline an array of strings in a bash for loop? January 6, 2024 by Tarik Did you try with: for i in "one" "two"; do echo "$i"; done