man 页
tar xvf src.txz usr/src/lib/libc/*.[23] # 解压 man2,man3
mv usr/src/lib/libc libc # 降低目录层级
rm -rf usr
find libc -name *.[23] > content.list # 向 content.list 写入 man2,man3 路径
cat content.list | sed -e 's/libc\///' -e 's/\/.*$//' | uniq |sort > level1.list最后更新于