]> Sergey Matveev's repositories - schwabrak.git/blob - recfile-export-all
Explicit empty line separator
[schwabrak.git] / recfile-export-all
1 #!/usr/bin/env zsh
2
3 root=$0:h:a
4 . $root/lib.zsh.rc
5
6 NO_COLOR=1 $root/list | while read line ; do
7     line=(${=line})
8     issue=${line[3]}
9     $root/recfile-export $issue
10     print
11 done