摘要: 一个简单的ls命令的实现: #include <stdio.h> #include <stdlib.h> #include <dirent.h> int main(int argc, char *argv[]) { DIR *dp; struct dirent *dirp; if(argc != 2 阅读全文
posted @ 2021-07-21 18:05 东宫得臣 阅读(66) 评论(0) 推荐(0) 编辑