From 069953548cc4b8ce99edbeea88dab957e1b25616 Mon Sep 17 00:00:00 2001 From: Ivaylo Ivanov Date: Wed, 3 Oct 2018 18:46:59 +0200 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.md | 6 ++++++ mygrep/Makefile | 0 mygrep/README.md | 0 mygrep/mygrep.c | 5 +++++ 5 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 mygrep/Makefile create mode 100644 mygrep/README.md create mode 100644 mygrep/mygrep.c 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!"); +}