Quote:
Originally Posted by kovidgoyal
calibredb catalog test.csv --fields=title,authors
For more information:
calibredb catalog test.csv --help
|
Thank you kind sir, that did it perfectly.
Just adding now a mixture of sed, grep, sort and awk jobs to modify the formatting, and I'll have what I wanted / needed.
Something like
Code:
sed 's/,\"\"//p'| sed 's/\",\"/ \# /p' | sed 's/\",\"/ \/ /gp'| sed 's/\"//gp' | sort -u | grep -v authors | awk -F# '{print $2}' > Catalog$LIB
seems to work well.