what is the difference between these two commands  ?
ls   /*
      and
ls  /*/

-------------------
these two commands give me different output:

ls -ld /*   =--->list all the files inside the directory (both files and subdirectories)

ls -ld /*/   =---> give me the list of only the (subdirectory inside the directory)

Thank you

Angelo