merged
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-21 17:02:48 +02:00
parent 7da16def78
commit 4b2f5d8c9f
67 changed files with 7 additions and 176 deletions

BIN
bin/.find_changes.sh.swp Normal file

Binary file not shown.

View File

@@ -1,16 +1,14 @@
#!/bin/bash
declare -A CH
CH=()
i=0
while read line; do
WHAT=$(dirname ${line})
echo "LIN: ${line} WHAT: ${WHAT}"
echo $CH
done < <(git diff-tree --no-commit-id --name-only HEAD -r)
echo ${CH}
#echo "LIN: ${line} WHAT: ${WHAT}"
CH[$i]=$WHAT
i=$((i++))
done < <(git diff-tree --no-commit-id --name-only HEAD -r| egrep '^_')
echo "UNIQ:"
UNIQ=$(echo ${CH} |sort |uniq)
echo ${UNIQ}
echo ${UNIQ}