Created
September 12, 2021 02:24
-
-
Save 2Andrew4/78b19b7b7de4a76518eb2e27b7515c7e to your computer and use it in GitHub Desktop.
How much times you would compare two files also binary files / need kompare
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/bash | |
## starter under gpl licensed | |
## contact: a@ŧ [email protected] | |
echo "wie viele Vergleiche?" | |
echo "How many comparings?" | |
read thech | |
COUNTER=0 | |
until [ $COUNTER == $thech ]; do | |
echo "COMPARE FULL PATH TO BINARY FILE" | |
read cmpO | |
echo "Conpare with full path to binary file" | |
read cmpT | |
echo " - - - - " | |
kompare -c $cmpO $cmpT | |
let COUNTER=COUNTER+1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment