I want to list only the directories in specified path (ls doesn\'t have such option). Also, can this be done with a single line command?
ls
### If you need full path of dir and list selective dir with "name" of dir(or dir_prefix*): find $(pwd) -maxdepth 1 -type d -name "SL*"