(实验)作业命名格式
# tree -N 2011级计科X班作业---1--12---XXX---NAME
2011级计科X班作业---1--12---XXX---NAME
├── 2011级计科X班作业---1---模块---XXX---NAME // 第1章
│ ├── hellomod.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---2---链表的应用---XXX---NAME // 第1章
│ ├── list.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---3---中断---XXX---NAME // 第3章 编写内核模块,计算两次中断时间间隔 (3.3.5 中断的简单应用)
│ ├── intr.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---4---fork系统调用---XXX---NAME // 第5章
│ ├── fork.c
│ └── result.txt
├── 2011级计科X班作业---5---fork_wait系统调用---XXX---NAME // 第5章 进程的创建及并发执行 将forktest.c和wait1.c融合
│ ├── fork_wait.c
│ └── result.txt
├── 2011级计科X班作业---6---用户态下模拟执行命令---XXX---NAME // 第5章 (5.6.6 系统调用及应用)
│ ├── exec_command.c
│ └── result.txt
├── 2011级计科X班作业---7---Pthread代码解析---生产者消费者---XXX---NAME // 第5章(参考网上代码)
│ ├── producer_consumer.c
│ └── result.txt
├── 2011级计科X班作业---8---Pthread代码解析---读者写者---XXX---NAME // 第5章(参考网上代码)
│ ├── reader-writer.c
│ └── result.txt
├── 2011级计科X班作业---9---Pthread代码解析---哲学家进餐---XXX---NAME // 第5章(参考网上代码)
│ ├── philosopher.c
│ └── result.txt
├── 2011级计科X班作业---10---进程间通信—管道(父进程和两个子进程)---XXX---NAME // 第5章
│ ├── pipe.c
│ └── result.txt
├── 2011级计科X班作业---11---银行家算法---C语言实现---XXX---NAME // 第6章(参考网上代码)
│ ├── banker.c
│ └── result.txt
└── 2011级计科X班作业---12---linux-0.11内核调试运行阅读环境的搭建及使用---XXX---NAME
└── linux-0.11内核调试运行阅读环境的搭建及使用---NAME.doc
# tar czvf 2011级计科X班作业---1--12---XXX---NAME.tar.gz 2011级计科X班作业---1--12---XXX---NAME
+++++++++++++++++++++++++++++++++++++++++++++++++++++
要求:
1. 源代码的 完整编译命令 作为 注释行,放在 *.c 文件 的 第一行;
2. 必须先做实验,实验成功后,再写 实验报告。
3. 实验报告 的主要内容:
1)实验目的与要求
2)源代码(indent处理过的 *.c 文件 的所有内容)
3)操作步骤、实验结果(可以将 终端窗口 里面 的 内容复制过来,如果内容太多,可以将和本次实验无关等内容删除)
4)结果分析( .txt文件 的所有内容)
+++++++++++++++++++++++++++++++++++++++++++++++++++++
格式化 C语言源码——命令indent
indent -npro -kr -i8 -ts8 -sob -l280 -ss -ncs -cp1 *.c *.h
阅读(3588) | 评论(0) | 转发(1) |
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
2011级计科X班作业---1--12---XXX---NAME
├── 2011级计科X班作业---1---模块---XXX---NAME // 第1章
│ ├── hellomod.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---2---链表的应用---XXX---NAME // 第1章
│ ├── list.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---3---中断---XXX---NAME // 第3章 编写内核模块,计算两次中断时间间隔 (3.3.5 中断的简单应用)
│ ├── intr.c
│ ├── Makefile
│ └── result.txt
├── 2011级计科X班作业---4---fork系统调用---XXX---NAME // 第5章
│ ├── fork.c
│ └── result.txt
├── 2011级计科X班作业---5---fork_wait系统调用---XXX---NAME // 第5章 进程的创建及并发执行 将forktest.c和wait1.c融合
│ ├── fork_wait.c
│ └── result.txt
├── 2011级计科X班作业---6---用户态下模拟执行命令---XXX---NAME // 第5章 (5.6.6 系统调用及应用)
│ ├── exec_command.c
│ └── result.txt
├── 2011级计科X班作业---7---Pthread代码解析---生产者消费者---XXX---NAME // 第5章(参考网上代码)
│ ├── producer_consumer.c
│ └── result.txt
├── 2011级计科X班作业---8---Pthread代码解析---读者写者---XXX---NAME // 第5章(参考网上代码)
│ ├── reader-writer.c
│ └── result.txt
├── 2011级计科X班作业---9---Pthread代码解析---哲学家进餐---XXX---NAME // 第5章(参考网上代码)
│ ├── philosopher.c
│ └── result.txt
├── 2011级计科X班作业---10---进程间通信—管道(父进程和两个子进程)---XXX---NAME // 第5章
│ ├── pipe.c
│ └── result.txt
├── 2011级计科X班作业---11---银行家算法---C语言实现---XXX---NAME // 第6章(参考网上代码)
│ ├── banker.c
│ └── result.txt
└── 2011级计科X班作业---12---linux-0.11内核调试运行阅读环境的搭建及使用---XXX---NAME
└── linux-0.11内核调试运行阅读环境的搭建及使用---NAME.doc
# tar czvf 2011级计科X班作业---1--12---XXX---NAME.tar.gz 2011级计科X班作业---1--12---XXX---NAME
+++++++++++++++++++++++++++++++++++++++++++++++++++++
要求:
1. 源代码的 完整编译命令 作为 注释行,放在 *.c 文件 的 第一行;
2. 必须先做实验,实验成功后,再写 实验报告。
3. 实验报告 的主要内容:
1)实验目的与要求
2)源代码(indent处理过的 *.c 文件 的所有内容)
3)操作步骤、实验结果(可以将 终端窗口 里面 的 内容复制过来,如果内容太多,可以将和本次实验无关等内容删除)
4)结果分析( .txt文件 的所有内容)
+++++++++++++++++++++++++++++++++++++++++++++++++++++
格式化 C语言源码——命令indent
indent -npro -kr -i8 -ts8 -sob -l280 -ss -ncs -cp1 *.c *.h
相关热门文章
给主人留下些什么吧!~~
评论热议