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

8 lines
79 B
Bash

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