2022年7月19日
摘要: Linux 系统调用 1. 创建 创建新文件 #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int creat(const char *pathname, mode_t mode); pathname文件路径字符串 m 阅读全文
posted @ 2022-07-19 14:32 WORMARZ 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1.cat 简介 cat [OPTION]... [FILE]... cat 可以将多个文本连接起来并输出,当省略输入文件或输入文件用字符-替代时,读取标准输入 常用参数 -n $~~~~$输出行数 -E $~~~~$每一段以$结尾 2.more 简介 more [options] file... 阅读全文
posted @ 2022-07-19 11:05 WORMARZ 阅读(98) 评论(0) 推荐(0) 编辑