Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bit-ranger/brtc

tools collection
https://github.com/bit-ranger/brtc

Last synced: about 1 month ago
JSON representation

tools collection

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
```