Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 190 Bytes

list-directories-only.md

File metadata and controls

10 lines (7 loc) · 190 Bytes

List directories only

In order to list only directories at a given path, ls can be used with a directories: flag

$ ls -d /path/to/dir/*

The glob at the end is important.