Guest User

Untitled

a guest
Oct 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. #!/system/bin/sh
  2. cd /data/sdext2/data
  3. array=(`ls`)
  4.  
  5. len=${#array[*]}
  6.  
  7. i=0
  8. while [ $i -lt $len ]; do
  9. echo "$i: ${array[$i]}"
  10. let i++
  11. done
Add Comment
Please, Sign In to add comment