]> Cypherpunks.ru repositories - prepro.git/blob - mk-list
67cbc44a5508e4b590824a75c18a2db3ce3d735e0fc7cb954d0c5a17bb27a223
[prepro.git] / mk-list
1 #!/usr/bin/env zsh
2
3 set -e
4 setopt EXTENDED_GLOB
5 for d (**/*(/)) {
6     list=()
7     for f ($d/*.info(onN)) list=($list $f:t:r)
8     [[ ${#list} != 0 ]] || continue
9     print ${(F)list} > $d/list
10     touch -r $d/${list[-1]}.info $d/list
11 }