This commit is contained in:
BIN
bin/.find_changes.sh.swp
Normal file
BIN
bin/.find_changes.sh.swp
Normal file
Binary file not shown.
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user