dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 08b1e2fc0fcdff74d3dfa885feb859b5c4e04df0
parent de93b3b905aea920cb1c76ae470196da306e8615
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed, 25 Sep 2019 13:57:42 +0200

Add script to find duplicates based on md5 checksum

Diffstat:
A.local/bin/duplicates | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/.local/bin/duplicates b/.local/bin/duplicates @@ -0,0 +1,2 @@ +#!/bin/sh +find "$1" -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 15