This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# fdups - Finds duplicated files in given path | |
# Copyright (C) 2019 Matouš Jan Fialka, <http://mjf.cz/> | |
# Released under the terms of "The MIT License" | |
FDUPS_SUMPROG="${FDUPS_SUMPROG:-sha512sum}" | |
fdups1() { | |
find "$1" ! -type d -printf '%s\n' | |