Created
September 12, 2021 02:27
-
-
Save 2Andrew4/9e2d3e9521a685b41bdb2ba11b0e73fb to your computer and use it in GitHub Desktop.
How much times you would compare two directories recursive?
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 DIRECTORY" | |
read cmpO | |
echo "Conpare with full path to directory" | |
read cmpT | |
echo " - - - - " | |
meld $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