Answers for "ls how to list only directories"

0

find only list directories

find . -maxdepth 1 -type d -iname "<regex>" -printf '%f\n'
Posted by: Guest on July-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language