/
niceSOFT
/
cups
Обзор
Документация
Войти
/
niceSOFT
/
cups
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/listpublic
12 строк
238 B
Michael R Sweet
Rename "tools" to "scripts", since that's what is contained.
26 апр 2019, 16:59
Не верифицирован
26 апр 2019, 16:59
7586933
Код
Авторство
О чём код?
#!/bin/sh # # List public API symbols... # for function in `nm -g *.so | grep "T " | awk '{print $3}' | grep -v '^_' | sort`; do found=`grep $function\( *.h | grep -v DEPRECATED` if test "x$found" != x; then echo $function fi done