12 lines
184 B
Bash
Executable file
12 lines
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
function fontgrep {
|
|
fc-list \
|
|
| grep $@ \
|
|
| awk '{$1=""; print substr($0, 2, length($0)-1) }' \
|
|
| grep -oE '^\s*[^,]+' \
|
|
| sort \
|
|
| uniq
|
|
}
|
|
|
|
fontgrep $@
|