Skip to content
Studio 3T - The professional GUI, IDE and client for MongoDB
  • Tools
    • Aggregation Editor
    • IntelliShell
    • Visual Query Builder
    • Export Wizard
    • Import Wizard
    • Query Code
    • SQL Query
    • Connect
    • Schema Explorer
    • Compare
    • SQL ⇔ MongoDB Migration
    • Data Masking
    • Task Scheduler
    • Reschema
    • More Tools and Features
  • Solutions
  • Resources
    • Knowledge Base
    • MongoDB Tutorials & Courses
    • Tool/Feature Documentation
    • Blog
    • Community
    • Testimonials
    • Whitepapers
    • Reports
  • Contact us
    • Contact
    • Sales Support
    • Feedback and Support
    • Careers
    • About Us
  • Store
    • Buy Now
    • Preferred Resellers
    • Team Pricing
  • Download
  • My 3T
search

How do I make my scripts quieter with MongoDB? #Studio3T_AMA

Posted on: 26/08/2021 by Dj Walker-Morgan

Q: I’m using Intellishell in Studio 3T to run MongoDB shell scripts. I’m using the output from the Raw Shell Output tab but I notice that there’s unexpected and apparently random output in there. Can I stop this so I don’t have to manually edit it out?

Welcome to the latest Studio 3T Ask Manatees Anything – #Studio3T_AMA. Want to know how to use Studio 3T to make your MongoDB life better? Just tweet and use #Studio3T_AMA or email [email protected].

A: The answer is yes, that output isn’t random and it’s worth knowing why it happens.

Let’s step back and look at what causes the problem. Shells like Mongo Shell, which sits underneath IntelliShell, are what’s called REPLs. That stands for Read, Evaluate, Print, Loop. So the shell reads your command, evaluates your command, prints the result and loops around. It’s the print part that’s causing the problem here.

The shell prints whatever the last command evaluated. So:

> a=5
5
> a=a+10
15
> print(a)
15

The first line setting `a` evaluates `a` as 5 so the shell prints 5. Then, when we do a calculation, that calculation evaluates `a` as 15 so the shell prints 15. It’s handy when we are interacting with a shell at the keyboard, but when we are running a script and want clean output, it is much less useful.

What you need is something that evaluates to nothing, so nothing gets printed. That’s where `var` comes in. The var statement declares a variable is in scope for the current context. And that’s an action that has no output. An added bonus is that multiple definitions of a var variable don’t generate an error (unlike say let or const). So we can use it like this:

> var a=5
> var a=a+10
> print(a)
15

No stray output, only output when we want it. Now this also works for defining anonymous functions as well:

> b=function(x){return x*2}
function(x){return x*2}
> b(2)
4

This is not what we want; our functions should not be getting printed out, but that’s what it evaluates to. But with var, it goes quiet:

> var b=function(x){return x*2}
> b(2)
4

And defining a function with a var doesn’t stop the function itself evaluating and being printed; just remember to wrap things in a var when you don’t want them to echo. Where it’s something more complex, like overriding a prototype method, you can always try the formulation:

> var nooutput=( Array.prototype.print=function(){ print("No Array Printing") })
> [].print()
No Array Printing
>

So there we have it, a quick way of suppressing unexpected output in MongoDB shell scripts.

Don’t forget though that this is only for the raw shell output. In Studio 3T’s IntelliShell, you can always enable Query Assist to automatically see results from your shell queries turned into tables, trees and JSON views.

Download Studio 3T and try IntelliShell today.


How helpful was this article?
This article was hideous
This article was bad
This article was ok
This article was good
This article was great
Thank you for your feedback!

About The Author

Dj Walker-Morgan

Dj has been around since Commodore had Pets and Apples grew everywhere. With a background in Unix and development, he's been around the technology business writing code or writing content ever since.

Related articles

  • How do you make Studio 3T export MongoDB collections to unique files? #Studio3T_AMA
  • What is the fastest way to make a database connection? #Studio3T_AMA
  • 3T Software Labs integrates with Hackolade to make Data Modernization projects easier
  • AMA: How can Studio 3T’s Tasks make me more efficient?
  • Smart and Safe MongoDB Multi-Document Updates #Studio3T_AMA

Tags

2022 academy aggregation AMA atlas Certification christmas community connections culture date tags events export features hackolade import intellishell In Use JSON knowledge base migration modelling mongodb mongoodb mongosh My 3T productivity query regex releases schema security SQL Studio 3T tasks time series tips updates webinar windows

Browse by MongoDB topic

  • Connecting to MongoDB
  • Database Administration & Security
  • Getting Started with MongoDB
  • Getting Started with Studio 3T
  • Import/Export
  • Job Automation & Scheduling
  • MongoDB Aggregation Framework
  • MongoDB/Studio 3T Workshops
  • Performance
  • Query & CRUD Operations
  • Reference
  • Schema
  • Studio 3T Licensing
  • Support and other resources
  • Working with MongoDB & SQL
  • Working with MongoDB Atlas

Studio 3T

MongoDB Enterprise Certified Technology PartnerSince 2014, 3T has been helping thousands of MongoDB developers and administrators with their everyday jobs by providing the finest MongoDB tools on the market. We guarantee the best compatibility with current and legacy releases of MongoDB, continue to deliver new features with every new software release, and provide high quality support.

Find us on FacebookFind us on TwitterFind us on YouTubeFind us on LinkedIn

Education

  • Free MongoDB Tutorials
  • Connect to MongoDB
  • Connect to MongoDB Atlas
  • Import Data to MongoDB
  • Export MongoDB Data
  • Build Aggregation Queries
  • Query MongoDB with SQL
  • Migrate from SQL to MongoDB

Resources

  • Feedback and Support
  • Sales Support
  • Knowledge Base
  • FAQ
  • Reports
  • White Papers
  • Testimonials
  • Discounts

Company

  • About Us
  • Blog
  • Careers
  • Legal
  • Press
  • Privacy Policy
  • EULA

© 2023 3T Software Labs Ltd. All rights reserved.

  • Privacy Policy
  • Cookie settings
  • Impressum

We value your privacy

With your consent, we and third-party providers use cookies and similar technologies on our website to analyse your use of our site for market research or advertising purposes ("analytics and marketing") and to provide you with additional functions (“functional”). This may result in the creation of pseudonymous usage profiles and the transfer of personal data to third countries, including the USA, which may have no adequate level of protection for the processing of personal data.

By clicking “Accept all”, you consent to the storage of cookies and the processing of personal data for these purposes, including any transfers to third countries. By clicking on “Decline all”, you do not give your consent and we will only store cookies that are necessary for our website. You can customize the cookies we store on your device or change your selection at any time - thus also revoking your consent with effect for the future - under “Manage Cookies”, or “Cookie Settings” at the bottom of the page. You can find further information in our Privacy Policy.
Accept all
Decline all
Manage cookies
✕

Privacy Preference Center

With your consent, we and third-party providers use cookies and similar technologies on our website to analyse your use of our site for market research or advertising purposes ("analytics and marketing") and to provide you with additional functions (“functional”). This may result in the creation of pseudonymous usage profiles and the transfer of personal data to third countries, including the USA, which may have no adequate level of protection for the processing of personal data. Please choose for which purposes you wish to give us your consent and store your preferences by clicking on “Accept selected”. You can find further information in our Privacy Policy.

Accept all cookies

Manage consent preferences

Essential cookies are strictly necessary to provide an online service such as our website or a service on our website which you have requested. The website or service will not work without them.

Performance cookies allow us to collect information such as number of visits and sources of traffic. This information is used in aggregate form to help us understand how our websites are being used, allowing us to improve both our website’s performance and your experience.

Google Analytics

Google Ads

Bing Ads

Facebook

LinkedIn

Quora

Hotjar

Reddit

Functional cookies collect information about your preferences and choices and make using the website a lot easier and more relevant. Without these cookies, some of the site functionality may not work as intended.

HubSpot

Social media cookies are cookies used to share user behaviour information with a third-party social media platform. They may consequently effect how social media sites present you with information in the future.

Accept selected