Project

General

Profile

« Previous | Next » 

Revision 925

Removed no longer needed mappings/review

View differences:

mappings/review
1
#!/bin/bash
2
# Converts all *.csv to human-readable (but machine unusable) form in for_review
3

  
4
selfDir="$(dirname -- "$0")"
5
cd "$selfDir"
6

  
7
shopt -s nullglob
8

  
9
mkdir -p for_review
10

  
11
for in in *-VegBIEN.*.csv; do
12
    ../bin/review <"$in" >"for_review/$in"
13
done
14 0

  

Also available in: Unified diff