How can I find all of the distinct file extensions in a folder hierarchy?

后端 未结 16 1285
梦谈多话
梦谈多话 2020-11-30 16:00

On a Linux machine I would like to traverse a folder hierarchy and get a list of all of the distinct file extensions within it.

What would be the best way to achieve

16条回答
  •  借酒劲吻你
    2020-11-30 16:30

    Adding my own variation to the mix. I think it's the simplest of the lot and can be useful when efficiency is not a big concern.

    find . -type f | grep -o -E '\.[^\.]+$' | sort -u
    

提交回复
热议问题