实验四-Linux下的C语言编程(共5页).doc
《实验四-Linux下的C语言编程(共5页).doc》由会员分享,可在线阅读,更多相关《实验四-Linux下的C语言编程(共5页).doc(5页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上实验四Linux 下的 C 语言编程四、实验内容本实验要求在 LINUX/UNIX 环境下用 C 语言编写三个具体的 SHELL 命令,基本涉及了 LINUX/UNIX 文件系统中较为常用的有关文件操作的系统调用。内容如下:1、编程实现 copy 命令。执行格式:copyfile1file2file3功能:将 file1、file2 两文件的内容合并拷入 file3 中,其中间应有 30 个字节的空洞(调试成功后可将空洞调大到几十 MB)。程序执行后用 du 命令显示其占用磁盘空间,观察其大小,分析原因。 程序可能涉及到的系统调用: read(), write(),
2、open(), creat(),close(), lseek()#include #include #include #include #include #include #include int main(int argc, char const *argv) int file1,file2,file3; if (argc!= 4) printf(Usage: copy file1 file2 file3n); exit(1); file1=open(argv1,O_RDONLY); file2=open(argv2,O_RDONLY); file3=open(argv3,O_CREAT|O
3、_RDWR,S_IRWXU); int n; char buf1024; while ( n=read(file1,buf,1024)0) if (write(file3,buf,n)!=n) printf(write errorn); if (n0)if (write(file3,buf,n)!=n) printf(write errorn); if (n0) printf(read %s errornErrno= %dn,argv2,errno); exit(0); close(file1); close(file2); close(file3); printf(successn); re
4、turn 0; 2、编程实现 renam(即 LINUX 下的 rename)命令,功能是实现文件的重命名。执行格式:renam filea fileb;其中 filea 为源文件,fileb 为目标文件。程序执行时应显示出命令行的所有参数,并给出重命名前后两个文件的大小、索引节点号及最近一次状态改变的时间。程序可能涉及到的系统调用:read(), write(), open(), stat(), close(), link(), unlink()#include #include #include #include #include #include extern int errno;int
5、 main(int argc,const char* argv) struct stat buf1,buf2; if (argc!= 3) printf(Usage: rename oldfile newfilen); exit(1); if(stat(argv1,&buf1) = -1) printf(star errornerrno is %dn,errno);exit(1);printf(使用stat()显示文件%s的信息n,argv1);printf(%s大小-%dn,argv1,(int)buf1.st_size);printf(%s索引节点号-%dn,argv1,(int)buf1
6、.st_ino);printf(%s最后一次修改时间-%dn,argv1,(int)buf1.st_mtime); printf(-n);if(rename(argv1,argv2)=-1)printf(rename errornErrno %dn,errno); exit(1); printf(-rename success-n);if(stat(argv2,&buf2) = -1) printf(star errornErrno is %dn,errno);exit(1);printf(使用stat()显示文件%s的信息n,argv2);printf(%s大小-%dn,argv2,(int
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 实验 Linux 语言 编程
限制150内