index
:
sandbox.git
master
My playground
git daemon
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
myls.sh
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'myls.sh')
-rwxr-xr-x
myls.sh
9
1 files changed, 9 insertions, 0 deletions
diff --git a/myls.sh b/myls.sh
new file mode 100755
index 0000000..2b80c9a
--- /dev/null
+++ b/
myls.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+LIST=(*)
+ARR_SZ=${#LIST[@]}
+for ((i = 0; i < ARR_SZ; i++))
+do
+ echo "${LIST[$i]}"
+done;
+