summaryrefslogtreecommitdiffstats
path: root/myls.sh
blob: 2b80c9a4ee3b798852c3e2a2a057b817954fa4d1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

LIST=(*)
ARR_SZ=${#LIST[@]}
for ((i = 0; i < ARR_SZ; i++))
do
    echo "${LIST[$i]}"
done;