Created
September 12, 2021 02:24
How much times you would compare two files also binary files / need kompare
This file contains hidden or 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@ŧ website@luna-net.org | |
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