From 1f68e6be581c7957dd40d043e9aa634045d9aafe Mon Sep 17 00:00:00 2001 From: stitchy Date: Sat, 14 Oct 2023 17:09:11 -0700 Subject: [PATCH] Movies Readme --- movies/readme.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 movies/readme.md diff --git a/movies/readme.md b/movies/readme.md new file mode 100644 index 0000000..9a58969 --- /dev/null +++ b/movies/readme.md @@ -0,0 +1,28 @@ + +# Movies + +This is a program which reads a CSV file with data about movies. +Please take care that the format is correct as the program does not parse arbitrary +length CSV files. + +# Compiling + +You can compile this program by using the make command. + +Simply type: + +``` +make +``` + +To run, type: + +``` +make run +``` + +To specify a CSV file, you can type: + +``` +./movies $(CSV_File_to_read.csv) +```