Initial commit
This commit is contained in:
commit
069953548c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.vscode/
|
6
README.md
Normal file
6
README.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
This project contains some basic UNIX command line tools I had to do for TU.
|
||||||
|
|
||||||
|
Currently the toolset is ther following:
|
||||||
|
* mygrep - a simplified version of grep
|
||||||
|
|
||||||
|
Feel free to read the descriptions for each tool.
|
0
mygrep/Makefile
Normal file
0
mygrep/Makefile
Normal file
0
mygrep/README.md
Normal file
0
mygrep/README.md
Normal file
5
mygrep/mygrep.c
Normal file
5
mygrep/mygrep.c
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
printf("Hello, World!");
|
||||||
|
}
|
Reference in New Issue
Block a user