Revision 4418
Added by Aaron Marcuse-Kubitza over 12 years ago
inputs/SpeciesLink/tapir.make | ||
---|---|---|
1 | 1 |
#!/bin/sh |
2 | 2 |
# Downloads SpeciesLink data using TAPIR |
3 |
# Usage: env [PHPRC=...] self 2>>log
|
|
3 |
# Usage: env [PHPRC=...] self |
|
4 | 4 |
|
5 | 5 |
selfDir="$(dirname -- "$0")" |
6 | 6 |
|
7 | 7 |
cd "$selfDir" |
8 | 8 |
|
9 |
php ../../../bin/tapir/tapir2flat.php </dev/null >&2 |
|
9 |
php ../../../bin/tapir/tapir2flat.php </dev/null &>"$0.log" |
Also available in: Unified diff
inputs/SpeciesLink/tapir.make: Write log messages to a log file ($0.log) instead of to stderr, because the verbose log messages should not fill up stderr. To view the progress, you should instead tail the created log file.