Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bit-ranger/brtc
tools collection
https://github.com/bit-ranger/brtc
Last synced: about 1 month ago
JSON representation
tools collection
- Host: GitHub
- URL: https://github.com/bit-ranger/brtc
- Owner: bit-ranger
- License: mit
- Created: 2022-11-14T02:07:44.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T11:33:19.000Z (10 months ago)
- Last Synced: 2024-04-25T13:00:42.693Z (8 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# brtc
tool collection## tpl
convert csv to sql using br-tpl
``` sh
cat case.csv | awk 'NR>1 {print $0}' | xargs -L1 br-tpl csv --template="INSERT INTO ORDER VALUES('{{0}}', '{{1}}');" -i >> case.sql
```