例如:
#!/bin/bash
#LOG="examples/mnist/lenet_log_mylog"
LOG="LOG/log.txt.`date +'%Y-%m-%d_%H-%M-%S'`"#包含运行日期
exec &> >(tee -a "$LOG")echo Logging output to "$LOG"
./build/tools/caffe train --solver=examples/mnist/lenet_solver.prototxt
本文共 294 字,大约阅读时间需要 1 分钟。
例如:
#!/bin/bash
#LOG="examples/mnist/lenet_log_mylog"
LOG="LOG/log.txt.`date +'%Y-%m-%d_%H-%M-%S'`"#包含运行日期
exec &> >(tee -a "$LOG")echo Logging output to "$LOG"
./build/tools/caffe train --solver=examples/mnist/lenet_solver.prototxt
转载于:https://www.cnblogs.com/xiangfeidemengzhu/p/7066343.html