12 lines
108 B
Bash
Executable File
12 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Jack-Benny Persson
|
|
# LX13
|
|
# Just testing arrays
|
|
|
|
Content=($(ls))
|
|
echo ${Content[@]}
|
|
|
|
exit 0
|
|
|