Adds README and changes main file

This commit is contained in:
2024-07-16 23:11:09 +02:00
parent a4b084307c
commit 067598a725
2 changed files with 17 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# vcf-reader
Simple app to convert `vcf` file to `json` format.
## Usage
```
$ path/to/main /path/to/file.vcf
```
Optionally, save result to file.
```
$ path/to/main /path/to/file.vcf > transformed.json
$ cat transformed.json | jq
```
Regular → Executable
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env php
<?php
if(!empty($argv[1])) {