0
mongorestoreの出力をコマンドラインからファイルに吐き出す方法はありますか?これはLinux/Unix用ですmongorestoreの出力をファイルに入れる
mongorestore --port $MONGO_PORT --db $database --archive=$BACKUP_NAME.archive >> log_file
は空のファイルを作成します。
助けが必要です。
mongorestoreの出力をコマンドラインからファイルに吐き出す方法はありますか?これはLinux/Unix用ですmongorestoreの出力をファイルに入れる
mongorestore --port $MONGO_PORT --db $database --archive=$BACKUP_NAME.archive >> log_file
は空のファイルを作成します。
助けが必要です。
dir > a.txt 2>&1
などを使用して問題を解決しました。
これを試してくださいhttps://stackoverflow.com/questions/1420965/redirect-windows-cmd-stdout-and-stderr-to-a-single-file – dnickless
これはうまくいきました! – DoingItNow