Ignore:
Timestamp:
Feb 23, 2026, 11:19:30 PM (4 hours ago)
Author:
Peter Dell
Message:

Update tools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/validate-stil.bat

    r828 r1837  
    1 grep -E " $" ../asma/Docs/STIL.txt
    2 grep -E ".{100}" ../asma/Docs/STIL.txt
    3 grep -v -n -E "^#|^/|^   NAME: |^  TITLE: |^ ARTIST: |^COMMENT: |^         |^$|\(#[0-9]+\)$" ../asma/Docs/STIL.txt
    4 perl -ne "m{^/(\S+)} and (-e qq{../asma/$1} or print)" ../asma/Docs/STIL.txt
    5 @rem grep "^/" ../asma/Docs/STIL.txt | sort -cfg
    6 grep -c "^/" ../asma/Docs/STIL.txt
     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 TracChangeset for help on using the changeset viewer.