标签:find -name 接口 编写 动态库 code color UNC div
1、编写动态库函数接口
gcc -fPIC -shared -o libfunction.so funtion.c
2、写头文件
3、测试
gcc test.c -L. -lfuntion -o runtest
4、运行
LD_LIBRARY_PATH=. ./runtest
查找 /home目录下txt结尾的文件
find /home -name "*.txt"
标签:find -name 接口 编写 动态库 code color UNC div
原文地址:https://www.cnblogs.com/crazybird123/p/9467874.html