Skip to content

Instantly share code, notes, and snippets.

@ErykDarnowski
Last active September 11, 2023 12:23
Show Gist options
  • Save ErykDarnowski/dbd6fa7e240ff67a2ac6cba4c6d488b0 to your computer and use it in GitHub Desktop.
Save ErykDarnowski/dbd6fa7e240ff67a2ac6cba4c6d488b0 to your computer and use it in GitHub Desktop.
Find files (excluding `*.git*` folders) and only write their **unique** extensions in to `out.txt`

Find files (excluding *.git* folders) and only write their unique extensions in to out.txt

find . -type 'f' -not -path '*.git*' | grep -oP "[^.]*$" | sort -u >> out.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment