Initial commit

This commit is contained in:
Ivaylo Ivanov 2018-10-03 18:46:59 +02:00
commit 069953548c
5 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vscode/

6
README.md Normal file
View 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
View File

0
mygrep/README.md Normal file
View File

5
mygrep/mygrep.c Normal file
View File

@ -0,0 +1,5 @@
#include <stdio.h>
void main() {
printf("Hello, World!");
}