scripts_grundkurs/Labb6/test_array.sh

12 lines
108 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# Just testing arrays
Content=($(ls))
echo ${Content[@]}
exit 0