Files
2021-10-05 19:35:55 +02:00

9 lines
99 B
Bash

#!/bin/bash
array=(Alice Bob Eve Mallory)
for element in "${array[@]}"
do
echo "$element"
done