Files
2022-01-08 21:40:00 +01:00

9 lines
92 B
Bash

#!/bin/bash
lista=(9 55 10 99)
for i in ${lista[@]}; do
printf "$i "
done
printf "\n"