15 lines
109 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# For test
List=`ls`
for i in $List
do
echo "$List"
done
exit 0