Advertisement
MertcanGokgoz

listing

Dec 20th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. #! /bin/bash
  2. set -e
  3. shopt -s nullglob
  4.  
  5. args=("$@")
  6.  
  7. klasorlistele=$( ls $args )
  8. a=0
  9.  
  10. for klasor in $klasorlistele ; do
  11.  let a=$a+1
  12.  dizi[a]=$klasor
  13.  echo "$a: ${dizi[$a]}"
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement