Listing only directories in UNIX

前端 未结 20 724
青春惊慌失措
青春惊慌失措 2020-12-12 09:40

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?

20条回答
  •  囚心锁ツ
    2020-12-12 10:02

    You can use ls -d */ or tree -d

    Another solution would be globbing but this depends on the shell you are using and if globbing for directories is supported.

    For example ZSH:

    zsh # ls *(/)
    

提交回复
热议问题