source: trunk/tools/validate-stil.bat@ 1837

Last change on this file since 1837 was 1837, checked in by Peter Dell, 4 hours ago

Update tools

File size: 431 bytes
Line 
1@echo off
2setlocal
3set STIL=../asma/Docs/STIL.txt
4echo Lines with leading spaces:
5grep -E " $" %STIL%
6echo Lines exceeding 100 characters:
7grep -E ".{100}" %STIL%
8echo Lines not matching the format:
9grep -v -n -E "^#|^/|^ NAME: |^ TITLE: |^ ARTIST: |^COMMENT: |^ |^$|\(#[0-9]+\)$" %STIL%
10echo Lines that ...???
11perl -ne "m{^/(\S+)} and (-e qq{../asma/$1} or print)" %STIL%
12echo Number of file paths:
13grep -c "^/" %STIL%
Note: See TracBrowser for help on using the repository browser.