Build/Inspection/Html/static_text.sh
2023-10-01 01:33:22 +00:00

11 lines
458 B
Bash

#!/bin/bash
. config.sh
echo "#################################################"
echo "Start static text inspection"
echo "#################################################"
grep -rlnP '(title|alt|aria\-label)(=\")((?!\<\?).)*(>)' --include \*.tpl.php ${INSPECTION_PATH} >> ${OUTPUT_PATH}/static_text.log
grep -rlnP '(\<td\>|\<th\>|\<caption\>|\<label.*?(\"|l)\>)[0-9a-zA-Z\.\?]+' --include \*.tpl.php ${INSPECTION_PATH} >> ${OUTPUT_PATH}/static_text.log