-
kr69sugu authored
used the complete .xlsx, removed some small syntax/formatting errors and manually recompiled the tag-list, cleaned and merged the data.
kr69sugu authoredused the complete .xlsx, removed some small syntax/formatting errors and manually recompiled the tag-list, cleaned and merged the data.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
checkTagLengths.sh 262 B
#!/bin/bash
if (( $# == 0 )); then
file=tagsAll
else
file=$1
fi
echo $file
stags=`cat $file | cut -f4`
TAG_LEN=19
atags=($(echo $stags | tr " " "\n"))
for tag in "${atags[@]}"
do
len=`echo $tag | wc -c`
if (( len != $TAG_LEN)) ; then
echo $tag
fi
done