mongo 스크립트로 파일 쓰기 작업을 수행하시겠습니까? mongojs 스크립트에서 파일에 쿼리 결과를 쓸 수 있습니까?저는 많은 검색을 해봤지만 해결책을 찾지 못했습니다. ex:- cursor = db.users.find(); while(cursor.hasNext()) { cursor.next(); // writing the cursor output to file ???? } 인쇄한 다음 출력을 리디렉션할 수 있습니다. script.js: cursor = db.users.find(); while(cursor.hasNext()){ printjson(cursor.next()); } 그런 다음 스크립트를 실행하고 출력을 파일로 리디렉션합니다. mongo --quiet script.js > result.txt..