/personal_list_of_books

A try for the organization of a personal list of books.

Primary LanguagePython

An Personal List of Books

Export calibre as csv:

calibredb catalog "zmaz-$(date -I).csv"

pwsh -c 'Import-Csv ./"zmaz-$(Get-Date -Format "yyyy-MM-dd").csv" | Select-Object -Property Authors,Title,@{n="Pubdate";e={Get-Date -Date $_.Pubdate -Format "yyyy-MM-dd"};},Publisher,Formats | ConvertTo-Csv | Set-Content -Encoding utf8BOM -Path ./"calibre-$(Get-Date -Format "yyyy-MM-dd").csv"'
Import-Csv ./"zmaz-$(Get-Date -Format "yyyy-MM-dd").csv" `
    | Select-Object -Property Authors,Title,@{n="Pubdate";e={Get-Date -Date $_.Pubdate -Format "yyyy-MM-dd"};},Publisher,Formats `
    | ConvertTo-Csv `
    | Set-Content -Encoding utf8BOM -Path ./"calibre-$(Get-Date -Format "yyyy-MM-dd").csv"