An open API service indexing awesome lists of open source software.

https://github.com/shalithasuranga/bash-csv-parser-example

Parsing CSV files with Bash IFS
https://github.com/shalithasuranga/bash-csv-parser-example

Last synced: about 2 months ago
JSON representation

Parsing CSV files with Bash IFS

Awesome Lists containing this project

README

        

# bash-csv-parser-example

Parsing CSV files with Bash IFS

## How to run this script?

```bash
./parse.sh
```

## Sample output

CSV input:

```
Fruit,Price(USD)
Orange,0.2
Pineapple,0.5
Mango,1.4
```

Output:

```
Orange : $0.20
Pineapple : $0.50
Mango : $1.40
```

## License

[MIT](LICENSE)