A simple utility for concatenating lines from stdin.
I often find myself in the situation where I need to scrape data from logs,
use combinations of grep
, cut
, and sed
to extract values,
then turn those values into various SQL queries.
The last step is always the most annoying, so I decided to spend a few minutes to make this tool.
text
Lassie
Flipper
Willy
Put everything together with no delimiter or quote marks:
bash
$ cat animals.txt | concat
LassieFlipperWilly
bash
$ cat animals.txt | concat -q "'"
'Lassie''Flipper''Willy'
bash
$ cat animals.txt | concat -d ", "
Lassie, Flipper, Willy
bash
$ cat animals.txt | concat -q "'" -d ", "
'Lassie', 'Flipper', 'Willy'