Update reference command for seeing parser ages

pull/856/head
Wilfred Hughes 2025-07-02 23:00:49 +07:00
parent c797641838
commit eb3735a90c
1 changed files with 1 additions and 1 deletions

@ -19,5 +19,5 @@ To see when each parser was last updated, use the following shell
command:
```
$ for d in $(git log | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort); do echo "$d"; git log --pretty=" %cs" -n 1 $d; done
$ for d in $(git log vendored_parsers/* | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort); do echo "$d"; git log --pretty=" %cs" -n 1 $d; done
```