Backup and organize your pictures library.
Go to file
Félix Baylac Jacqué d3b7bea53b Readme: rewrite example usage 2023-08-26 13:00:51 +02:00
images Readme: add demo, remove warning 2023-08-26 12:46:17 +02:00
src Add Nix derivation 2023-08-25 23:15:10 +02:00
.gitignore Init 2023-08-24 10:51:58 +02:00
Cargo.lock Backup multiple files on the same invocation 2023-08-25 21:41:24 +02:00
Cargo.toml Backup multiple files on the same invocation 2023-08-25 21:41:24 +02:00
LICENSE First semi-naive and dirty implementation 2023-08-24 13:09:51 +02:00
README.md Readme: rewrite example usage 2023-08-26 13:00:51 +02:00
default.nix Add Nix derivation 2023-08-25 23:15:10 +02:00

README.md

Picobak

Screencast shocasing a picture imports using picobak

Picobak is a small CLI utility to help you backup and organize your pictures on a filesystem. It uses the pictures EXIF metadata to store the files in a year/month/day directory tree like this:

2023
|
|
|-- 02
    |-- 19
        |-- pic2.jpg
    |-- 20
        |-- pic1.jpg
        |-- pic2.jpg
        |-- pic3.jpg
(...)

Usage

Send the files you want to backup via stdin, then point picobak to the directory where you archive your pictures:

E.G:

find "/path/to/pictures/you/want/to/import/" -type f | picobak /your/pictures/library

Inspiration

This program is heavily inspired by Shotwell's backup feature. I actually used that for years to organize my pictures. Sadly, it became more and more unstable along the years, it often fails midway-through the backup. Its implementation is too intimidating for me to try to fix and maintain it. In contrast, this utility is meant to stay small in terms of features scope and codebase. Nevertheless, Shotwell is a great program overall, kudos to the original authors, they have made my life simpler for years <3.