Revision 220
Added by Aaron Marcuse-Kubitza about 13 years ago
review | ||
---|---|---|
1 |
#!/bin/sh |
|
1 |
#!/bin/bash
|
|
2 | 2 |
# Converts all *.csv to human-readable (but machine unusable) form in for_review |
3 | 3 |
|
4 | 4 |
selfDir="$(dirname -- "$0")" |
5 | 5 |
cd "$selfDir" |
6 | 6 |
|
7 |
shopt -s nullglob |
|
8 |
|
|
7 | 9 |
mkdir -p for_review |
8 | 10 |
|
9 | 11 |
for in in *.{organisms,plots}.csv; do |
Also available in: Unified diff
review: Added nullglob