UnixTools/find_exts.sh

3 lines
80 B
Bash
Executable File

#!/bin/sh
find -type f -print | sed 's/^.*\.\([a-zA-Z0-9]\+\)$/\1/gm' | sort -u