source:
cpc/trunk/project/batch/documents/compute_latest.sh
@
1362
Last change on this file since 1362 was 1362, checked in by , 11 years ago | |
---|---|
File size: 219 bytes |
Line | |
---|---|
1 | #!/bin/bash |
2 | |
3 | if ! test -e out/ ; then |
4 | mkdir out |
5 | fi |
6 | |
7 | for file in `perl download_docs.pl`; do |
8 | echo $file |
9 | file2=`echo $file | sed 's/^\(pjl\|ppl\|ppr\|rap\|ta\)\//out\//'` |
10 | perl parse_metas.pl $file > $file2 |
11 | done; |
12 | |
13 |
Note: See TracBrowser
for help on using the repository browser.