diff options
author | Arun Isaac | 2025-09-29 13:55:46 +0100 |
---|---|---|
committer | Arun Isaac | 2025-09-29 14:01:51 +0100 |
commit | 9766e70f7fea16642fbf53272d7775bedd846a48 (patch) | |
tree | 5cc66866c01ef94819ef7c3773a3d0ebecc660d2 /filter-duplicates | |
download | photo-utils-9766e70f7fea16642fbf53272d7775bedd846a48.tar.gz photo-utils-9766e70f7fea16642fbf53272d7775bedd846a48.tar.lz photo-utils-9766e70f7fea16642fbf53272d7775bedd846a48.zip |
Diffstat (limited to 'filter-duplicates')
-rwxr-xr-x | filter-duplicates | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/filter-duplicates b/filter-duplicates new file mode 100755 index 0000000..81ed2ca --- /dev/null +++ b/filter-duplicates @@ -0,0 +1,5 @@ +#! /bin/sh + +while read line; do + echo $line | tr ' ' '\n' | nsxiv -io +done |