首页 > 代码库 > 自己动手写shell命令之ls -R1fF
自己动手写shell命令之ls -R1fF
ls命令的R参数代表递归的列出所有子文件夹中的所有文件,1表示每一行只显示一个文件或文件夹,f表示不排序即输出,F表示在每项的输出的最后根据其文件类型相应的加上*/=>@|字符。通过c语言实现ls -R1fF命令的效果,其源代码如下:
#include <stdio.h> #include <sys/types.h> #include <dirent.h> #include <sys/stat.h> #include <pwd.h> #include <grp.h> #include <string.h> void listdir(char *); char get_type(struct stat *); int main(int argc,char * argv[]) { if(argc == 1) listdir("."); else { int index = 1; while(argc > 1) { listdir(argv[index]); index++; argc--; } } return 0; } void listdir(char * dirname) { DIR * dir; struct stat info; //char pointer[]; struct dirent * direntp; if((dir = opendir(dirname)) != NULL) { printf("%s:\n",dirname); while((direntp = readdir(dir)) != NULL) { char absolute_pathname[255]; strcpy(absolute_pathname,dirname); strcat(absolute_pathname,"/"); strcat(absolute_pathname,direntp->d_name); lstat(absolute_pathname,&info); printf("%s",direntp->d_name); printf("%c\n",get_type(&info)); } printf("\n"); rewinddir(dir); while((direntp = readdir(dir)) != NULL) { if(strcmp(direntp->d_name,".") == 0 || strcmp(direntp->d_name,"..") == 0) continue; char absolute_pathname[255]; strcpy(absolute_pathname,dirname); strcat(absolute_pathname,"/"); strcat(absolute_pathname,direntp->d_name); lstat(absolute_pathname,&info); if(S_ISDIR((&info)->st_mode)) listdir(absolute_pathname); } } } char get_type(struct stat * info) { if(S_ISCHR(info->st_mode)) return '*'; if(S_ISDIR(info->st_mode)) return '/'; if(S_ISSOCK(info->st_mode)) return '='; if(S_ISBLK(info->st_mode)) return '>'; if(S_ISLNK(info->st_mode)) return '@'; if(S_ISFIFO(info->st_mode)) return '|'; return ' '; }
自己动手写shell命令之ls -R1fF
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。