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

https://github.com/helinwang/csvq

apply csv quoting to stdin
https://github.com/helinwang/csvq

Last synced: 26 days ago
JSON representation

apply csv quoting to stdin

Awesome Lists containing this project

README

        

# csvq makes plain text acceptable by photoshop data set import

Photoshop can import strings from a text file, but often it shows error message like

> Could not parse the file contents as a data set. Too many values were listed for data set 2 (or any integer).

The problem is photo shop import file as csv format, but plain text needs csv quoting and some other tricks.

## Install
- install golang https://golang.org/doc/install
- `go get github.com/helinwang/csvq`

## Usage
- `cat foo.txt | csvq > foo_new.txt`
- And then import `foo_new.txt` from photoshop data set import.