Overview
Comment: | Remove debug code from nbfake |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60-nbfake-stderr |
Files: | files | file ages | folders |
SHA1: |
bb277556b45512e61f0948b08acf1a54 |
User & Date: | tyardeni on 2014-10-29 15:17:12 |
Other Links: | branch diff | manifest | tags |
Context
2014-10-29
| ||
15:40 | Use local rather than env variables to determine log and host check-in: efe2d43275 user: tyardeni tags: v1.60-nbfake-stderr | |
15:17 | Remove debug code from nbfake check-in: bb277556b4 user: tyardeni tags: v1.60-nbfake-stderr | |
12:14 | Added header and help message to nbfake check-in: 7d862aea5e user: tyardeni tags: v1.60-nbfake-stderr | |
Changes
Modified utils/nbfake from [3b8b8dce99] to [6c86d9c83e].
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash ############################################################################### # # nbfake - capture command output in a logfile # # nbfake behavior can be changed by setting the following env vars: # NBFAKE_HOST SSH to $NBFAKE_HOST and run command # NBFAKE_LOG Logfile for nbfake output # ############################################################################### | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/bash ############################################################################### # # nbfake - capture command output in a logfile # # nbfake behavior can be changed by setting the following env vars: # NBFAKE_HOST SSH to $NBFAKE_HOST and run command # NBFAKE_LOG Logfile for nbfake output # ############################################################################### if [[ -z "$@" ]]; then cat <<__EOF nbfake usage: nbfake <command to run> |
︙ | ︙ |