diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-05-21 20:29:45 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-05-21 20:29:45 -0400 |
| commit | 3cac848c77f9aeee1a7d1f8832c25710e10ea6a1 (patch) | |
| tree | b5157aac4c9ecbe2f1db104b4c51e23efaf52da8 | |
| parent | b21b1238401f75e6bf7503ba8d42decdeeb10708 (diff) | |
Output all information about images in `query`.
| -rw-r--r-- | src/main.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index db43ea9..0565ded 100644 --- a/src/main.rs +++ b/src/main.rs @@ -360,7 +360,10 @@ fn main() { } } for image in tb.images_by_tags(&tags[..]).unwrap() { - println!("{}/{}", image.orig_dir, image.filename); + println!( + "{},{},{}{}", + image.id, image.blake2, image.orig_dir, image.filename + ); } } _ => { |