<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 02:57:18 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-1536] Mongodb Shell: support for using it as a interpreter</title>
                <link>https://jira.mongodb.org/browse/SERVER-1536</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I would love the possibility to do something like this:&lt;/p&gt;

&lt;p&gt;#!/usr/bin/mongo --interpreter&lt;br/&gt;
db = connect(&quot;mongo.machine.host.com/mydatabase&quot;)&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;...&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Doing this currently results in this (because of the first line which starts on #):&lt;br/&gt;
$ ./test.mongo.js &lt;br/&gt;
Mon Aug  2 14:59:54 SyntaxError: illegal character ./test.mongo.js:0&lt;br/&gt;
failed to load: ./test.mongo.js&lt;/p&gt;


&lt;p&gt;For now, I have created a wrapper in bash to simulate the functionality (/usr/bin/mongointerpreter):&lt;br/&gt;
#!/bin/bash&lt;br/&gt;
file=`tempfile`.js&lt;br/&gt;
cat $1 | grep -v &apos;^#&apos; &amp;gt; $file&lt;br/&gt;
mongo --quiet $file&lt;br/&gt;
rm -f $file&lt;/p&gt;


&lt;p&gt;Usage:&lt;br/&gt;
#!/usr/bin/mongointerpreter&lt;br/&gt;
db = connect(&quot;mongo.machine.host.com/mydatabase&quot;);&lt;br/&gt;
print(db.sessions.find().count());&lt;/p&gt;


&lt;p&gt;I could probably manage to create a patch within the week if the feature sounds reasonable for you (a.k.a. if there&apos;s interest for it).&lt;/p&gt;</description>
                <environment></environment>
        <key id="12619">SERVER-1536</key>
            <summary>Mongodb Shell: support for using it as a interpreter</summary>
                <type id="2" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14711&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="5" iconUrl="https://jira.mongodb.org/images/icons/priorities/trivial.svg">Trivial - P5</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="mathias@mongodb.com">Mathias Stearn</assignee>
                                    <reporter username="vilhelmk">Vilhelm K. Vard&#248;y</reporter>
                        <labels>
                    </labels>
                <created>Mon, 2 Aug 2010 13:06:50 +0000</created>
                <updated>Tue, 12 Jul 2016 00:18:47 +0000</updated>
                            <resolved>Wed, 11 Aug 2010 23:45:21 +0000</resolved>
                                                    <fixVersion>1.7.0</fixVersion>
                                    <component>Shell</component>
                                        <votes>0</votes>
                                    <watches>2</watches>
                                                                                                                <comments>
                            <comment id="16773" author="auto" created="Wed, 11 Aug 2010 23:45:18 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{&apos;login&apos;: &apos;RedBeard0531&apos;, &apos;name&apos;: &apos;Mathias Stearn&apos;, &apos;email&apos;: &apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: ignore first line if starts with shebang &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-1536&quot; title=&quot;Mongodb Shell: support for using it as a interpreter&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-1536&quot;&gt;&lt;del&gt;SERVER-1536&lt;/del&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://github.com/mongodb/mongo/commit/3fcfa3ba16bffa681a21e863b270b5cf31797472&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://github.com/mongodb/mongo/commit/3fcfa3ba16bffa681a21e863b270b5cf31797472&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="16364" author="vilhelmk" created="Mon, 2 Aug 2010 14:19:55 +0000"  >&lt;p&gt;Did an improvement of the mongointerpreter-wrapper (adding support for arguments), if anyone should find it useful:&lt;/p&gt;

&lt;p&gt;#!/bin/bash&lt;br/&gt;
file=`tempfile`.js&lt;br/&gt;
cat $1 | grep -v &apos;^#&apos; &amp;gt; $file&lt;br/&gt;
ARGS=&quot;var arguments=[&quot;&lt;br/&gt;
while [ ! -z &quot;$1&quot; ]; do&lt;br/&gt;
    ARGS=&quot;$ARGS &apos;$1&apos;&quot;&lt;br/&gt;
    if [ ! -z $2 ]; then&lt;br/&gt;
        ARGS=&quot;$ARGS,&quot;&lt;br/&gt;
    fi&lt;br/&gt;
    shift&lt;br/&gt;
done&lt;br/&gt;
ARGS=&quot;$ARGS];&quot;&lt;br/&gt;
mongo --quiet --eval &quot;$ARGS&quot; $file&lt;br/&gt;
rm -f $file&lt;/p&gt;

&lt;p&gt;Basically creates a array called arguments which is accessible from the script.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 11 Aug 2010 23:45:18 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        13 years, 28 weeks ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            13 years, 28 weeks ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Old_Backport</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10000"><![CDATA[No]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>auto</customfieldvalue>
            <customfieldvalue>mathias@mongodb.com</customfieldvalue>
            <customfieldvalue>vilhelmk</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrpiav:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hrii7r:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>21603</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|ht0i4n:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>