操作系统上机作业--使用系统调用实现mycat

本文介绍了一个名为mycat的简易程序的实现过程,该程序模仿了系统内置的cat命令功能,能够将指定文件的内容输出到屏幕上。mycat通过系统调用如open、read、write和close来完成文件操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  • mycat.c的功能与系统cat程序相同
  • mycat将指定的文件内容输出到屏幕,例子如下:
  • 要求使用系统调用open/read/write/close实现
$ cat /etc/passwd 
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
...
$ ./mycat /etc/passwd 
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin

实现思路:通过main函数接受要打开的文件,调用open打开它,通过stat函数获取该文件的大小,然后将文件的内容读取出来,输出到屏幕上。
实现代码:

#include<stdio.h>
#include<stdlib.h>

#include<sys/stat.h>
#include<unistd.h>

#include<sys/types.h>
#include<fcntl.h>

int main(int argc,char *argv[]){
        struct stat st;
        int fsize;
        int fd;
        char *buffer;

        if(argc!=2){
                printf("Error:parameter wrong!\n");
                exit(0);
        }

        fd=open(argv[1],O_RDONLY);
        if(fd<0){
                printf("Error:open file wrong!\n");
                exit(0);
        }

        stat(argv[1],&st);
        fsize=st.st_size;
        buffer=(char*)malloc((1+fsize)*sizeof(char));

        if(!buffer){
                printf("Error:memory wrong!\n");
                exit(0);
        }

        read(fd,buffer,fsize);
        write(1,buffer,fsize);

        close(fd);
        return 0;
}

运行结果这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值