diff options
| author | yuzu-eva <stevenhu@web.de> | 2024-11-19 22:00:35 +0100 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2024-11-19 22:00:35 +0100 |
| commit | bde6708e7ecda55697fbb1afc79868a1d821a4a3 (patch) | |
| tree | 5ab777b1f86f63e1819cac62c274b434b6975c7f | |
| parent | ed649450d3fe176e0623efb9e75eaf51a1c0dd8e (diff) | |
update readme
| -rw-r--r-- | README.md | 29 |
1 files changed, 26 insertions, 3 deletions
@@ -1,9 +1,32 @@ # myal - My Anime Library -My Anime Library is program to manage an anime watchlist, written in C. +My Anime Library is cli-tool to manage an anime watchlist, written in C. I used to track which anime I have watched and what episode I'm on by writing in a text file, which got annoying after a while. -This is why I created a simple program to quickly search and change a csv-file. +This is why I created a simple program to quickly search and change a +csv file. + Is it a complete overkill to write this in C? Yes Could this have been a simple bash script? Definitely -But I was bored and writing C is fun.
\ No newline at end of file + +But why not? + +This cli-tool works with csv files in the format + +name,episode + +For example: + +Samurai Champloo,14 +Bakemonogatari,done +Steins; Gate,1 + +and so on. +You need to set your filepath in the main.c, but everything else should work +out of the box. +The Makefile uses clang, but you can change it to gcc in the second line. Or +you could simply do + +``` +gcc -o myal main.c +```
\ No newline at end of file |
