9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# return a list of all supported file extensions
|
||
|
|
||
|
zod_lib="$1"
|
||
|
filter_opts="$2"
|
||
|
|
||
|
awk -f "$zod_lib/supported_extensions.awk" "$filter_opts"
|