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
- Host: GitHub
- URL: https://github.com/helinwang/csvq
- Owner: helinwang
- Created: 2017-01-02T02:04:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T02:46:07.000Z (over 8 years ago)
- Last Synced: 2025-02-17T06:28:59.359Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.