├── .gitignore ├── LICENSE ├── README.md ├── all code.docx ├── all code.pdf ├── exam2016 ├── ex1.c ├── ex2.c ├── ex3.c └── ex4.c ├── file_descriptor ├── dup ├── dup.c ├── log.txt ├── use └── use.c ├── file_operating ├── db ├── db.c └── my.db ├── multi_process ├── concurr ├── concurr.c ├── fork ├── fork.c ├── getpid ├── getpid.c ├── wait1 ├── wait1.c ├── wait2 └── wait2.c ├── multi_thread ├── ex1 ├── ex1.c ├── ex2 ├── ex2.c ├── ex3 ├── ex3.c ├── ex4 ├── ex4.c ├── ex5 ├── ex5.c ├── ex6 ├── ex6.c ├── ex7 ├── ex7.c └── ex8.c ├── program_task ├── file_read_write │ ├── mycat │ ├── mycat.c │ ├── mycat2.c │ ├── mycp │ ├── mycp.c │ ├── mycp2.c │ ├── myecho │ └── myecho.c ├── multi_process │ ├── input.txt │ ├── mysys │ ├── mysys.c │ ├── mysys2.c │ ├── output.txt │ ├── sh1.c │ ├── sh2.c │ ├── sh3 │ ├── sh3.c │ ├── sh3_lst.c │ ├── shell.png │ ├── shell2.png │ ├── shell3.png │ ├── shell4.png │ ├── shell5.png │ └── test.c └── multi_thread │ ├── pc1.c │ ├── pc2.c │ ├── pc2_debug.c │ ├── pi1.c │ ├── pi2.c │ ├── ring.c │ └── sort.c ├── program_task_anothor ├── banker │ ├── banker.cpp │ └── shot.png ├── dll │ ├── dlltest.c │ ├── main.c │ └── shot.png ├── draw_circle │ ├── dola.png │ └── drawCircle │ │ ├── drawCircle.sln │ │ └── drawCircle │ │ ├── dola.png │ │ ├── drawCircle.cpp │ │ ├── drawCircle.vcxproj │ │ ├── drawCircle.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── readme.md ├── report.docx ├── report.pdf └── writer_first │ ├── WriterFirst │ ├── WriterFirst.sln │ └── WriterFirst │ │ ├── WriterFirst.vcxproj │ │ ├── WriterFirst.vcxproj.filters │ │ └── main.cpp │ └── shutcut.png ├── report.docx ├── report.pdf └── shell ├── cleanlogs.sh ├── hello.sh ├── regular_express.txt ├── t.back ├── t.txt ├── test.sh ├── test2.sh ├── ttt.sh └── ttt.sh.bak /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/README.md -------------------------------------------------------------------------------- /all code.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/all code.docx -------------------------------------------------------------------------------- /all code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/all code.pdf -------------------------------------------------------------------------------- /exam2016/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/exam2016/ex1.c -------------------------------------------------------------------------------- /exam2016/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/exam2016/ex2.c -------------------------------------------------------------------------------- /exam2016/ex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/exam2016/ex3.c -------------------------------------------------------------------------------- /exam2016/ex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/exam2016/ex4.c -------------------------------------------------------------------------------- /file_descriptor/dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_descriptor/dup -------------------------------------------------------------------------------- /file_descriptor/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_descriptor/dup.c -------------------------------------------------------------------------------- /file_descriptor/log.txt: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /file_descriptor/use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_descriptor/use -------------------------------------------------------------------------------- /file_descriptor/use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_descriptor/use.c -------------------------------------------------------------------------------- /file_operating/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_operating/db -------------------------------------------------------------------------------- /file_operating/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_operating/db.c -------------------------------------------------------------------------------- /file_operating/my.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/file_operating/my.db -------------------------------------------------------------------------------- /multi_process/concurr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/concurr -------------------------------------------------------------------------------- /multi_process/concurr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/concurr.c -------------------------------------------------------------------------------- /multi_process/fork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/fork -------------------------------------------------------------------------------- /multi_process/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/fork.c -------------------------------------------------------------------------------- /multi_process/getpid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/getpid -------------------------------------------------------------------------------- /multi_process/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/getpid.c -------------------------------------------------------------------------------- /multi_process/wait1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/wait1 -------------------------------------------------------------------------------- /multi_process/wait1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/wait1.c -------------------------------------------------------------------------------- /multi_process/wait2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/wait2 -------------------------------------------------------------------------------- /multi_process/wait2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_process/wait2.c -------------------------------------------------------------------------------- /multi_thread/ex1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex1 -------------------------------------------------------------------------------- /multi_thread/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex1.c -------------------------------------------------------------------------------- /multi_thread/ex2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex2 -------------------------------------------------------------------------------- /multi_thread/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex2.c -------------------------------------------------------------------------------- /multi_thread/ex3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex3 -------------------------------------------------------------------------------- /multi_thread/ex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex3.c -------------------------------------------------------------------------------- /multi_thread/ex4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex4 -------------------------------------------------------------------------------- /multi_thread/ex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex4.c -------------------------------------------------------------------------------- /multi_thread/ex5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex5 -------------------------------------------------------------------------------- /multi_thread/ex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex5.c -------------------------------------------------------------------------------- /multi_thread/ex6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex6 -------------------------------------------------------------------------------- /multi_thread/ex6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex6.c -------------------------------------------------------------------------------- /multi_thread/ex7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex7 -------------------------------------------------------------------------------- /multi_thread/ex7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex7.c -------------------------------------------------------------------------------- /multi_thread/ex8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/multi_thread/ex8.c -------------------------------------------------------------------------------- /program_task/file_read_write/mycat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycat -------------------------------------------------------------------------------- /program_task/file_read_write/mycat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycat.c -------------------------------------------------------------------------------- /program_task/file_read_write/mycat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycat2.c -------------------------------------------------------------------------------- /program_task/file_read_write/mycp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycp -------------------------------------------------------------------------------- /program_task/file_read_write/mycp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycp.c -------------------------------------------------------------------------------- /program_task/file_read_write/mycp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/mycp2.c -------------------------------------------------------------------------------- /program_task/file_read_write/myecho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/myecho -------------------------------------------------------------------------------- /program_task/file_read_write/myecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/file_read_write/myecho.c -------------------------------------------------------------------------------- /program_task/multi_process/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/input.txt -------------------------------------------------------------------------------- /program_task/multi_process/mysys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/mysys -------------------------------------------------------------------------------- /program_task/multi_process/mysys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/mysys.c -------------------------------------------------------------------------------- /program_task/multi_process/mysys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/mysys2.c -------------------------------------------------------------------------------- /program_task/multi_process/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /program_task/multi_process/sh1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/sh1.c -------------------------------------------------------------------------------- /program_task/multi_process/sh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/sh2.c -------------------------------------------------------------------------------- /program_task/multi_process/sh3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/sh3 -------------------------------------------------------------------------------- /program_task/multi_process/sh3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/sh3.c -------------------------------------------------------------------------------- /program_task/multi_process/sh3_lst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/sh3_lst.c -------------------------------------------------------------------------------- /program_task/multi_process/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/shell.png -------------------------------------------------------------------------------- /program_task/multi_process/shell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/shell2.png -------------------------------------------------------------------------------- /program_task/multi_process/shell3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/shell3.png -------------------------------------------------------------------------------- /program_task/multi_process/shell4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/shell4.png -------------------------------------------------------------------------------- /program_task/multi_process/shell5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/shell5.png -------------------------------------------------------------------------------- /program_task/multi_process/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_process/test.c -------------------------------------------------------------------------------- /program_task/multi_thread/pc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/pc1.c -------------------------------------------------------------------------------- /program_task/multi_thread/pc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/pc2.c -------------------------------------------------------------------------------- /program_task/multi_thread/pc2_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/pc2_debug.c -------------------------------------------------------------------------------- /program_task/multi_thread/pi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/pi1.c -------------------------------------------------------------------------------- /program_task/multi_thread/pi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/pi2.c -------------------------------------------------------------------------------- /program_task/multi_thread/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/ring.c -------------------------------------------------------------------------------- /program_task/multi_thread/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task/multi_thread/sort.c -------------------------------------------------------------------------------- /program_task_anothor/banker/banker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/banker/banker.cpp -------------------------------------------------------------------------------- /program_task_anothor/banker/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/banker/shot.png -------------------------------------------------------------------------------- /program_task_anothor/dll/dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/dll/dlltest.c -------------------------------------------------------------------------------- /program_task_anothor/dll/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/dll/main.c -------------------------------------------------------------------------------- /program_task_anothor/dll/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/dll/shot.png -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/dola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/dola.png -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle.sln -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/dola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/dola.png -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.cpp -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.vcxproj -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/drawCircle.vcxproj.filters -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/stdafx.cpp -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/stdafx.h -------------------------------------------------------------------------------- /program_task_anothor/draw_circle/drawCircle/drawCircle/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/draw_circle/drawCircle/drawCircle/targetver.h -------------------------------------------------------------------------------- /program_task_anothor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/readme.md -------------------------------------------------------------------------------- /program_task_anothor/report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/report.docx -------------------------------------------------------------------------------- /program_task_anothor/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/report.pdf -------------------------------------------------------------------------------- /program_task_anothor/writer_first/WriterFirst/WriterFirst.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/writer_first/WriterFirst/WriterFirst.sln -------------------------------------------------------------------------------- /program_task_anothor/writer_first/WriterFirst/WriterFirst/WriterFirst.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/writer_first/WriterFirst/WriterFirst/WriterFirst.vcxproj -------------------------------------------------------------------------------- /program_task_anothor/writer_first/WriterFirst/WriterFirst/WriterFirst.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/writer_first/WriterFirst/WriterFirst/WriterFirst.vcxproj.filters -------------------------------------------------------------------------------- /program_task_anothor/writer_first/WriterFirst/WriterFirst/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/writer_first/WriterFirst/WriterFirst/main.cpp -------------------------------------------------------------------------------- /program_task_anothor/writer_first/shutcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/program_task_anothor/writer_first/shutcut.png -------------------------------------------------------------------------------- /report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/report.docx -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/report.pdf -------------------------------------------------------------------------------- /shell/cleanlogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/shell/cleanlogs.sh -------------------------------------------------------------------------------- /shell/hello.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # This is a comment 3 | echo Hello World 4 | -------------------------------------------------------------------------------- /shell/regular_express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/shell/regular_express.txt -------------------------------------------------------------------------------- /shell/t.back: -------------------------------------------------------------------------------- 1 | test text 2 | -------------------------------------------------------------------------------- /shell/t.txt: -------------------------------------------------------------------------------- 1 | test text 2 | -------------------------------------------------------------------------------- /shell/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/shell/test.sh -------------------------------------------------------------------------------- /shell/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLMichael/OSExperiment/HEAD/shell/test2.sh -------------------------------------------------------------------------------- /shell/ttt.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shell/ttt.sh.bak: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------