mirror of
https://github.com/trapd00r/LS_COLORS.git
synced 2024-11-10 21:36:36 +01:00
9 lines
259 B
Bash
Executable File
9 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
|
|
exts="$(dircolors LS_COLORS | head -n1 | sed 's/=[^:]*//g ; s/:/\n/g')"
|
|
exts_sorted="$(sort <<< "$exts")"
|
|
exts_uniq="$(sort -u <<< "$exts")"
|
|
|
|
diff --color=auto --text --report-identical-files <(echo "$exts_uniq") <(echo "$exts_sorted")
|