diff options
author | Kyle K <kylek389@gmail.com> | 2012-05-26 00:22:05 -0500 |
---|---|---|
committer | Kamil Kaminski <kyle@kkaminsk.com> | 2012-05-26 00:22:05 -0500 |
commit | 5c961dc755954d1a2f90248c81aff725cf38466c (patch) | |
tree | 73aebdd6101d798355149d6499186ef9a2ef866b /myls.sh | |
download | scripts-5c961dc755954d1a2f90248c81aff725cf38466c.tar.gz scripts-5c961dc755954d1a2f90248c81aff725cf38466c.tar.bz2 scripts-5c961dc755954d1a2f90248c81aff725cf38466c.zip |
initial commit
Diffstat (limited to 'myls.sh')
-rwxr-xr-x | myls.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/bash + +LIST=(*) +ARR_SZ=${#LIST[@]} +for ((i = 0; i < ARR_SZ; i++)) +do + echo "${LIST[$i]}" +done; + |