9 lines
128 B
Bash
9 lines
128 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
fc-list \
|
||
|
| grep -ioE ": [^:]*$1[^:]+:" \
|
||
|
| sed -E 's/(^: |:)//g' \
|
||
|
| tr , \\n \
|
||
|
| sort \
|
||
|
| uniq
|