Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donquinleone/releasescsvtohtml
Simple Bash script to convert an imported CSV file containing music release data to HTML files for inclusion on a website.
https://github.com/donquinleone/releasescsvtohtml
Last synced: about 2 months ago
JSON representation
Simple Bash script to convert an imported CSV file containing music release data to HTML files for inclusion on a website.
- Host: GitHub
- URL: https://github.com/donquinleone/releasescsvtohtml
- Owner: DonQuinleone
- License: mit
- Created: 2024-06-19T22:40:16.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-20T12:35:26.000Z (7 months ago)
- Last Synced: 2024-06-21T13:34:29.738Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReleasesCSVtoHTML
## Preparation
Using the template.csv file, produce a pipe-delimited CSV file comprising all release information. Excel cannot produce pipe-delimited CSVs on its own, so once you have a comma-delimited CSV, use a programme like [Table Tool](https://github.com/jakob/TableTool). The CSV should also not wrap content in quotation marks, but it should include the header row.
## Usage
Then, make the script executable and pass in both your output directory (as an absolute path without a trailing slash) and your pipe-delimited CSV as arguments:
```
chmod +x convert.sh
./convert.sh /path/to/output your-data.csv
```