OS1/movies/readme.md

37 lines
487 B
Markdown
Raw Normal View History

2023-10-14 17:09:11 -07:00
# 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.
2023-10-15 16:17:07 -07:00
## Compiling
2023-10-14 17:09:11 -07:00
2023-10-15 16:17:07 -07:00
You can compile this program by using the make command or by hand.
2023-10-14 17:09:11 -07:00
Simply type:
```
make
```
2023-10-15 16:17:07 -07:00
or, to manually compile, type:
```
gcc -std=c99 -g *.c -o movies
```
## Running
2023-10-14 17:09:11 -07:00
To run, type:
```
make run
```
To specify a CSV file, you can type:
```
./movies $(CSV_File_to_read.csv)
```