commit 069953548cc4b8ce99edbeea88dab957e1b25616 Author: Ivaylo Ivanov Date: Wed Oct 3 18:46:59 2018 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dbe9c82 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ba5d2c8 --- /dev/null +++ b/README.md @@ -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. \ No newline at end of file diff --git a/mygrep/Makefile b/mygrep/Makefile new file mode 100644 index 0000000..e69de29 diff --git a/mygrep/README.md b/mygrep/README.md new file mode 100644 index 0000000..e69de29 diff --git a/mygrep/mygrep.c b/mygrep/mygrep.c new file mode 100644 index 0000000..5a7647a --- /dev/null +++ b/mygrep/mygrep.c @@ -0,0 +1,5 @@ +#include + +void main() { + printf("Hello, World!"); +}