about summary refs log tree commit diff
path: root/filter-duplicates
diff options
context:
space:
mode:
authorArun Isaac2025-09-29 13:55:46 +0100
committerArun Isaac2025-09-29 14:01:51 +0100
commit9766e70f7fea16642fbf53272d7775bedd846a48 (patch)
tree5cc66866c01ef94819ef7c3773a3d0ebecc660d2 /filter-duplicates
downloadphoto-utils-9766e70f7fea16642fbf53272d7775bedd846a48.tar.gz
photo-utils-9766e70f7fea16642fbf53272d7775bedd846a48.tar.lz
photo-utils-9766e70f7fea16642fbf53272d7775bedd846a48.zip
Initial commit HEAD main
Diffstat (limited to 'filter-duplicates')
-rwxr-xr-xfilter-duplicates5
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