active questions tagged scripting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T08:02:30Z http://stackoverflow.com/feeds/tag/scripting http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211378/hidden-features-of-bash 20 Hidden features of Bash Patrick 2008-10-17T08:14:02Z 2009-12-10T15:55:46Z <p>Shell scripts are often used as glue, for automation and simple one-off tasks. What are some of your favorite "hidden" features of the Bash shell/scripting language?</p> <ul> <li>One feature per answer</li> <li>Give an example and short description of the feature, not just a link to documentation</li> <li>Label the feature using bold title as the first line</li> </ul> <p>See also:</p> <ul> <li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li> <li><a href="http://stackoverflow.com/questions/102254/hidden-features-of-delphi">Hidden features of Delphi</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li> <li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li> <li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li> <li><a href="http://stackoverflow.com/questions/102084/hidden-features-of-vbnet">Hidden features of VB.Net</a></li> </ul> http://stackoverflow.com/questions/1804408/sql-server-how-to-generate-object-scripts-without-dmo-smo 1 SQL Server: How to generate object scripts without DMO/SMO? Ian Boyd 2009-11-26T15:43:06Z 2009-12-10T15:08:37Z <p>i want to generate scripts for database objects - tables, views, stored procedures, etc.</p> <p>Since:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms162169.aspx" rel="nofollow">SQL Server Management Objects (SMO)</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms131540.aspx" rel="nofollow">SQL Distributed Management Objects (SQL-DMO)</a> (depricated)</li> </ul> <p>are not installed on a fresh install of:</p> <ul> <li>Windows XP</li> <li>Windows Vista</li> <li>Windows 7</li> </ul> <p>nor are they redistributable, they are not an option.</p> <p>Is there any source code that converts <strong>SELECTs</strong> from <strong>system tables</strong> into associated scripts?</p> <p>i'll start us off with the <strong>pseudo-code</strong> that scripts a stored procedures, views, triggers, or user-defined functions:</p> <pre><code>String GetStoredProcedureScript(String storedProcedureName) { return GetHelpText(storedProcedureName); } String GetViewScript(String viewName) { return GetHelpText(viewName); } String GetTriggerScript(String triggerName) { return GetHelpText(storedProcedureName); } String GetUserDefinedFunctionScript(String userDefinedFunctionName) { return GetHelpText(userDefinedFunctionName); } String GetHelpText(String objectName) { String szQuery = 'EXECUTE sp_helptext '+QuotedStr(objectName); String sql := ''; using (Recordset rs = connection.Execute(szQuery)) { while not rs.EOF do { sql = sql+rs['text']; rs.Next; } } return sql; } </code></pre> <p><strong>Edit:</strong> Thanks <a href="http://stackoverflow.com/questions/1804408/sql-server-how-to-generate-object-scripts-without-dmo-smo/1877134#1877134">servicesharvest316</a> for pointing out <code>sp_helptext</code>. That's why i have a class that abstracts these things away.</p> http://stackoverflow.com/questions/1881592/how-in-maya-can-i-get-the-3d-position-of-the-mouse 0 how (in maya) can i get the 3D position of the mouse? abstracted_dwaik 2009-12-10T15:07:33Z 2009-12-10T15:07:33Z <p>hello...</p> <p>i have created a dragger context in maya using the following code, pos holds my 2D coordinates of mouse cursor, i want to convert it into 3D coordinate to be the source of the ray i want to launch,, i want it either through python scripting or through the python api,, </p> <pre><code>import maya.cmds as mc mc.draggerContext( 'testContext', pressCommand='getCursorPos()', dragCommand='getCursorPos()', cursor='default') def getCursorPos(): #--get the 2D position of cursor (on the view port)---- pos = mc.draggerContext( 'testContext', query=1, dragPoint=1) #----convert to 3D coordinates in the scene-------- ???????? </code></pre> <p>thanks in advance</p> http://stackoverflow.com/questions/1881322/infopath-window-dialogarguments-from-ui-showmodaldialog-is-null 0 InfoPath window.dialogArguments from UI.ShowModalDialog is null Michael Brooks 2009-12-10T14:26:03Z 2009-12-10T14:26:03Z <p>I have been asked to fix a piece of legacy code that doesn't work. I don't know whether this ever worked, but it looks OK to me as per the documentation and examples.</p> <p>Our InfoPath form uses the 2003 object model. Its FormCode.cs calls other assemblies one of which contains the line:</p> <pre><code>moderatorId = (string)thisXDocument.UI.ShowModalDialog("UserNamePasswordDialog.htm", thisXDocument, 200, 400, Type.Missing, Type.Missing); </code></pre> <p>UserNamePasswordDialog.htm is one of the form's Resources files that gets correctly packaged into the final XSD file. Within this HTML file is script which I have enhanced with some diagnostic tests as follows:</p> <pre><code>&lt;script language="jscript" type="text/jscript"&gt; var gobjXDocument = null; var moderatorId = null; function Initialize() { // Save a reference to the XDocument object. if (typeof window.dialogArguments == "object") { gobjXDocument = window.dialogArguments; } else { if (null == window.dialogArguments) { window.alert("window.dialogArguments is null!"); } else { gobjXDocument = window.dialogArguments; } } if (null == gobjXDocument) { window.alert("gobjXDocument is null!"); } else { if (null == gobjXDocument.Extension) { window.alert("gobjXDocument.Extension is null!"); } } } function Close() { //if username or password is blank give val msg in error if(UserNameid.value == "") { errorid.innerText = "Please enter a username."; errorid.style.display = ''; } else { //if username and password are not blank and are valid for this action return and close moderatorId = gobjXDocument.Extension.Logon(UserNameid.value, Passwordid.value) if(moderatorId) { //if email is not blank return email and close window.returnValue = moderatorId; // Close the dialog window.close(); } else { errorid.innerText = "The username and password are not valid !"; errorid.style.display = ''; } } } &lt;/script&gt; </code></pre> <p>Any time this is run the Initialize method throws up the alerts "window.dialogArguments is null!" and "gobjXDocument is null!". The latter is obviously expected given the occurrence of the former.</p> <p>The pertinent questions are of course why is this happening and how do I fix it?</p> <p>From browsing various forums I have learned that the most common reason for window.dialogArguments to come through as null is when one is making the ShowModalDialog call cross domain. In this scenario this clearly cannot ever be the case since the form's embedded code is calling one of its own embedded resource files. However, that cross domain business is clearly a security feature so I'm wondering whether there is some other security feature that's causing the issue in my case. My form is configured such that it requires Full Trust. To my understanding this does not actually kick in when running via the debugger (which I am doing), and besides that I have also built the form and signed it and I still get the same result when I run that version.</p> <p>So, any ideas anyone?</p> <p>Regards,</p> <p>Michael</p> http://stackoverflow.com/questions/1880972/session-time-out 0 Session time out SmartestVEGA 2009-12-10T13:29:46Z 2009-12-10T13:47:37Z <pre><code>&lt;script language="javascript" type="text/javascript"&gt; setTimeout('SessionTimeout()', &lt;%= Session.Timeout * 60 * 1000 %&gt;); function SessionTimeout() { alert(&lt;%= "'Session time out!!'" %&gt;); window.location = "Default.aspx" } &lt;/script&gt; </code></pre> <p>Does the above code will help in session time out ? If so how many minutes? how i can increase it to 19 minutes ?</p> <p>Please help !!</p> http://stackoverflow.com/questions/1880812/-session-timeout-19-1000 0 <%= Session.Timeout * 19 * 1000 %> SmartestVEGA 2009-12-10T12:55:48Z 2009-12-10T13:43:27Z <p>What is the actual time of session timeout here is it 19 minutes ?</p> <pre><code>&lt;%= Session.Timeout * 19 * 1000 %&gt; &lt;script language="javascript" type="text/javascript"&gt; setTimeout('SessionTimeout()', &lt;%= Session.Timeout * 19 * 1000 %&gt;); function SessionTimeout() { alert(&lt;%= "'Session time out!!'" %&gt;); window.location = "Default.aspx" } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1876008/is-there-a-java-scripting-language-that-can-work-without-caching-jython-groovy 1 Is there a Java Scripting Language that Can Work Without Caching? Jython? Groovy? etc? JPDecker 2009-12-09T18:50:17Z 2009-12-10T09:18:12Z <p>Hi all,</p> <p> We have an existing java-based heavyweight project that needed an interactive script interpreter. After a fair amount of research we eventually ended up with Jython, one of the reasons being that the customer's group already has a large amount of python expertise, and it's an easier sell to give them an api in a language close to one they already know. </p> <p> Alright, well at first this was fine, but there turned out to be a problem- there are deployment environments which are locked down for ordinary, (ie: non-admin) users. Such ordinary users have no permission to write anywhere on the local drives of their machines. Additionally, their $Home (on windows) is usually over a high-latency network (often 100ms+), and to top it off, the size of the writeable folder itself is usually below 10mb. Yes, that's megabytes. </p> <p> Given these restrictions, it looks like Jython may not fit the bill. We need to be able to run without access to a low-latency disk cache, even if that means a small speed penalty. After a search through Google and the forums, there doesn't appear to be a way in Jython to accomplish this. </p> <p> There are a couple obvious workarounds: </p> <ul> <li> Get the customer to open up their security. Unfortunately, it's a large bureaucracy and trying to justify changing an enterprise-wide security policy to provide scripting for one product isn't really an option. </li> <li> Set up a ramdisk and put the script interpreter's cache there. The problem with this approach on windows is that it involves a level of interference with the OS that will remain whether our application is running or not. (At least as I understand the techniques for doing so) </li> </ul> <p> So here's my plea - does anyone know of a java scripting interpreter that has an interactive mode and does not necessarily require a disk cache? It does not necessarily need to use python syntax, if there's a way to get others, (ie: javaLUA, Groovy, etc) to do this, I'd be open to it. </p> http://stackoverflow.com/questions/1878052/security-problem-with-java-scriptengine 0 security problem with Java ScriptEngine Exception 2009-12-10T01:12:44Z 2009-12-10T02:04:30Z <p>I just started to use the Java ScriptEngine to do little extensions to my Application then i noticed that i can import all the java classes in the script and use them without restrictions. Is there a way to specify what classes a script can use? I dont want them to do things like <code>java.lang.System.exit(1);</code></p> http://stackoverflow.com/questions/1163011/recursively-traverse-samba-shares -1 Recursively traverse Samba shares? Bill Gray 2009-07-22T04:07:07Z 2009-12-09T20:47:10Z <p>With bash on linux, how would I write a command to recursively traverse shares mounted, and run commands on each file, to get the file type and size, permissions etc, and then output all of this to a file?</p> http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby 0 Why can't I call javac using the Backquotes/Backticks approach in Ruby? Gishu 2009-11-24T12:45:40Z 2009-12-09T13:25:37Z <p>I am trying to compile a java source file via a Ruby Script. However I am a bit puzzled by the following behavior</p> <pre><code>compile_results = `javac #{source_file}` </code></pre> <p>this fails to run with a 'No such file...' error. I popped up irb</p> <pre><code>irb(main):001:0&gt; `javac -help` Errno::ENOENT: No such file or directory - javac -help from (irb):1:in ``' from (irb):1 irb(main):002:0&gt; `csc` =&gt; "Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.3053\nfor Microsoft (R) Windows (R) 2005 Framework version 2.0.50727\nCopyright (C) Microsoft Corpo ration 2001-2005. All rights reserved.\n\nfatal error CS2008: No inputs specifie d\n" </code></pre> <p>However both javac and csc are on the PATH. e.g. if i run javac manually from the shell that I run the ruby script from, I am able to get to the java compiler. The source file exists.</p> <p>I tried both ruby 1.8.7 and 1.9.1 (Windows). Does anyone see something that I am missing ?</p> <p><strong>Update:</strong> I dont think it has to do with command line args. Rather it can't get to javac for some weird reason. I put the line <code>javac %1</code> in a batch file and call the batch file in the usual way. This worked... but still am not sure of what the whole issue was with javac.</p> http://stackoverflow.com/questions/1872470/script-to-open-executables-and-snap-to-top-left-hand-corner-of-desktop 1 Script to open executables and snap to top left hand corner of desktop unknown (google) 2009-12-09T08:48:04Z 2009-12-09T10:30:11Z <p>Hi guys I was just wonderin' in a .bat file, if there was a way to call an external .bat file, or even an *.exe and make it open so it 'snaps' to the top left hand corner of the screen ?</p> <p>Cheers</p> http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell 24 How to get started with PowerShell? Brad Leach 2008-08-28T22:30:54Z 2009-12-08T21:21:05Z <p>I played with one of the early beta's of Powershell V1, but haven't used it since it went "gold". What is the best way to get started using Powershell? Which version of Powershell should I be using (V1.0 vs 2.0 CTP's)? What are you using Powershell for? Are there any tools that make using Powershell easier (i.e. development environments)?</p> http://stackoverflow.com/questions/1866307/inspiration-for-easy-to-use-probably-graphical-scripting-language 1 Inspiration for easy-to-use, probably graphical, scripting language Jonatan 2009-12-08T11:13:16Z 2009-12-08T11:13:16Z <p>I have to implement some scripting capabilities in our product. The scripting will typically be used for simple things such as:</p> <pre><code>IF param1 &gt; 5 + param3 AND current time &gt; 18.00: SET param2 TO 3 ELSE SET param2 TO 4 </code></pre> <p>Another very common task is to let a parameter vary over the day, preferably using some line diagram with setpoints that can be moved around visually etc.</p> <p>Now, I need inspiration for how to implement this. The very outdated tool our clients use today is little more than a graphical basic dialect: you don't have to type the script in plain text but can drag symbols such as "IF", "THEN", "ELSE", "Parameter", "Current time", etc, onto a canvas, and you have to know and understand the syntax and semantics. I think we could do better.</p> <p>I've been looking around for graphical languages, but I've yet to find a compelling system.</p> <p>For example, there's the Lego Mindstorm language, that is very simple but it's very directed to automation, and does not handle math and logic very nice. There's labview, which seems a little too complicated for the typical users. There's ladder-programming as used for PLC's, but my experience is that they are also very automation-oriented and doesn't handle math very well. There's the interconnected-boxes approach of Yahoo Pipes and some software synthesizers, but they also get cumbersome to work with when math is needed, and control sequences are not very natural. Then there's very simple, wizard-style alternatives, such as the filters in Outlook and Evolution, but I don't think they are flexible enough.</p> <p>So, what graphical languages have you stumbled upon and kind-of liked? (I know hardly no programmers, myself included, enjoy these kind of languages, but they serve a purpose here I think.)</p> http://stackoverflow.com/questions/1857673/how-can-i-implement-scripting-in-my-game 0 How can I implement scripting in my game? sonicbhoc 2009-12-07T03:36:00Z 2009-12-08T07:44:03Z <p>I'm trying to write a game and implement scripting so that later on in development I won't have to recompile everything when I want to change numbers.</p> <p>My problem is that I don't know how scripts should interface with the game. The scripting language I'm using is <a href="http://www.angelcode.com/angelscript" rel="nofollow">angelscript</a>.</p> <p>Right now, I have a state: the intro state, which I'm using as a test for most of the modules in my game "engine" (it's more like a loose collection of classes). It will load and draw a picture and draw text, and use scripting to update itself, and maybe switch to a dummy state afterwards to test the state manager.</p> <p>While writing it, I realized that using the script to do most of the updating would require that I <a href="http://www.angelcode.com/angelscript/sdk/docs/manual/doc%5Fregister%5Ftype.html" rel="nofollow">register most of my game engine's modules</a> with the script, and pretty much move the bulk of the code to the scripting language. Personally, I'd rather have the C++ portion doing the majority of the work, and have the scripting language come up with the numbers to use in the formulas/drawing/whatever.</p> <p>However, if I'm right, doing it that way would entail lots of different update modules for the majority of the things in the game that need to be updated, and requiring that they all be loaded in, and that the C++ code would have to run each update function individually. </p> <p>Or, there's a way to achieve script and program interoperability that I'm overlooking. Either way, could someone help me figure out what the best way to get scripting implemented into my game is?</p> http://stackoverflow.com/questions/1863568/xargs-command-on-cygwin-is-mangling-file-paths 0 XArgs command on cygwin is mangling file paths Dougnukem 2009-12-07T23:12:36Z 2009-12-07T23:42:00Z <p>I'm trying to use xargs on a Cygwin Windows system to remove SVN files deleted locally.</p> <p>I run the following command that generates the following output:</p> <pre><code>svn status | grep '^\!' | sed 's/! *//' </code></pre> <blockquote> <p>weblings-webplatform\vendor\jetty-7.0.0.pre5\contexts-available\test-annotations.d\META-INF\MANIFEST.MF weblings-webplatform\vendor\jetty-7.0.0.pre5\contexts-available\test-annotations.d\WEB-INF\jetty-env.xml</p> </blockquote> <p>Then when I run the following command I get the following errors:</p> <pre><code> svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm % svn: 'weblings-webplatformvendorjetty-7.0.0.pre5contexts-availabletest-annotations.dMETA-INFMANIFEST.MF' does not exist </code></pre> <p>I've tried using cygpath to convert the svn status paths but it doesn't appear to do anything.</p> http://stackoverflow.com/questions/1317497/what-is-applescript-and-what-is-it-used-for 0 What is applescript and what is it used for? CrazyJugglerDrummer 2009-08-23T01:23:21Z 2009-12-07T00:10:44Z <p>What is applescript and what is it used for?</p> http://stackoverflow.com/questions/437808/scripting-engine-host-for-applications 1 Scripting engine host for applications Matthew Savage 2009-01-13T02:47:59Z 2009-12-06T13:57:26Z <p>We have an application which at certain times needs to execute 'tasks' in order to do some work. These tasks currently are just commands (read: dodgy VB scripts) being fired off and then monitoring the process for completion or aborting if it 'times out', however we don't have enough control over the execution.</p> <p>I would like to integrate a scripting engine or scripting host to enable us to execute the scripts within our application (in another appdomain if possible) and maintain some control over them. I'd envisage that we have scripts which follow an interface similar to:</p> <pre><code>void Initialize(); void Destroy(); void Execute(); void Abort(); int GetProgress(); </code></pre> <p>Of course, the above is probably not what would be in the code, however you get the idea... Essentially from our application we could call <code>Initialize</code>, then <code>Execute</code>, poll <code>GetProgress</code> until the return value is 100 or whatever, then at the end either call <code>Destroy</code> or <code>Abort</code> then <code>Destroy</code> if we need to cancel or it goes past the timeout period.</p> <p>The main thing that the scripts would need to be able to do is AD queries, and interact with the Shell (e.g. Map a network drive, or Disconnect one).</p> <p>I've looked into a few options to do this - one which I have implemented a prototype of uses Boo as the language and essentially loads the script on the fly to compile and execute as an 'assembly' in memory. I like the way this works but I'm not sure how well it would be accepted not being a 'well known' language etc.</p> <p>Other options I'm looking at are Python (IronPython), Ruby (IronRuby), PowerShell, and maybe VB, but I'm not sure about the ease of implementation with VB.</p> <p>Any opinions, comments, suggestions or even resources which might point me in the right direction?</p> http://stackoverflow.com/questions/1854288/how-to-reset-a-variable-to-null-in-php 1 How to reset a variable to NULL in PHP? Jeremy Rudd 2009-12-06T03:57:22Z 2009-12-06T04:08:17Z <p>I can use <code>isset($var)</code> to check if the variable is not defined or null. (eg. checking if a session variable has been set before)</p> <p>But after setting a variable, how do I reset it to the default such that <code>isset($var)</code> returns <code>false</code>?</p> http://stackoverflow.com/questions/888666/scripting-language-that-can-produce-a-small-independent-windows-exe 1 Scripting language that can produce a small, independent, Windows EXE? Justin Love 2009-05-20T15:34:49Z 2009-12-06T03:16:01Z <p>I'd like to do some light data processing - a little binary data manipulation followed by conversion to text serialization. The result is written to a file, and processed by an external program (run by my program). The data processing is more than I'd care to consider doing in batch files.</p> <p>I'd prefer to use a scripting language, but not have to install the language first. The target computers are mostly older Windows boxes, which are disconnected from the network (no updates, such as PowerShell)</p> <p>I'm not familiar with the various language's tools for creating EXE files. Which ones have solutions that work well and don't produce huge files? (i.e., whole interpreter package plus my script.)</p> http://stackoverflow.com/questions/28820/windows-mobile-what-scripting-platforms-are-available 5 Windows Mobile - What scripting platforms are available? BrianLy 2008-08-26T18:42:14Z 2009-12-06T00:16:50Z <p>We have a number of users with Windows Mobile 6 and need to apply minor changes. eg. update a registry setting. One option is push and execute an executable file using our device management software.</p> <p>I'd like this to be a little more friendly for the admins who are familiar with scripting in VBScript/JScript etc. What are the options for scripting on Windows Mobile devices?</p> http://stackoverflow.com/questions/1084718/applescript-in-finder-advance-to-next-file 0 Applescript in Finder: advance to next file luca 2009-07-05T19:58:46Z 2009-12-05T21:28:26Z <p>What I'm trying to do is:</p> <p>set x to current selection, then advance the selection to the next file and then delete x.</p> <p>I'm doing this because CMD-backspace clears the selection every time and that's annoying!</p> http://stackoverflow.com/questions/374960/sql-server-agent-how-to-sleep 0 SQL Server Agent: How to "sleep"? Thomas 2008-12-17T15:45:45Z 2009-12-05T01:21:44Z <p>In a scripting step in a scheduled task in SQL Server Agent 2005, I need to trigger a webscript that is running on a different server. I'm doing this:</p> <pre><code>Dim ie Set ie = CreateObject( "InternetExplorer.Application" ) ie.navigate "...to my dreamscript" ' Wait till IE is ready Do While ie.Busy (1) Loop ie.Quit set ie = Nothing </code></pre> <p>At (1) I would like to "sleep" (e.g. WScript.sleep(..)), but WScript is not available in this environment. Is there another way to "sleep" for a while?</p> http://stackoverflow.com/questions/1848821/in-powershell-whats-the-best-way-to-join-two-tables-into-one 2 In Powershell, what's the best way to join two tables into one? Michael Steele 2009-12-04T18:31:53Z 2009-12-04T18:39:56Z <p>I'm fairly new to Powershell, and am wondering if someone knows of any better way to accomplish the following example problem.</p> <p>I have an array of mappings from IP address to host-name. This represents a list of active DHCP leases:</p> <pre><code>PS H:\&gt; $leases IP Name -- ---- 192.168.1.1 Apple 192.168.1.2 Pear 192.168.1.3 Banana 192.168.1.99 FishyPC </code></pre> <p>I have another array of mappings from MAC address to IP address. This represents a list of IP reservations:</p> <pre><code>PS H:\&gt; $reservations IP MAC -- --- 192.168.1.1 001D606839C2 192.168.1.2 00E018782BE1 192.168.1.3 0022192AF09C 192.168.1.4 0013D4352A0D </code></pre> <p>For convenience, I was able to produce a third array of mappings from MAC address to IP address and host name using the following code. The idea is that <code>$reservations</code> should get a third field, "Name", which is populated whenever there's a matching "IP" field:</p> <pre><code>$reservations = $reservations | foreach { $res = $_ $match = $leases | where {$_.IP -eq $res.IP} | select -unique if ($match -ne $NULL) { "" | select @{n="IP";e={$res.IP}}, @{n="MAC";e={$res.MAC}}, @{n="Name";e={$match.Name}} } } </code></pre> <p>The desired output is something like this:</p> <pre><code>PS H:\&gt; $ideal IP MAC Name -- --- ---- 192.168.1.1 001D606839C2 Apple 192.168.1.2 00E018782BE1 Pear 192.168.1.3 0022192AF09C Banana 192.168.1.4 0013D4352A0D </code></pre> <p>Is there any bettor way of doing this?</p> http://stackoverflow.com/questions/1842280/how-to-write-bash-script-to-search-for-ips-in-a-file-and-put-write-them-to-anoth 0 How to write bash script to search for IP's in a file and put write them to another file? Matt Pascoe 2009-12-03T19:24:34Z 2009-12-03T19:46:57Z <p>I need to write a bash script that will take a grepable nmap output file that displays IP addresses with port 80 open and copy the IPs that have port 80 open to another text file. The output looks similar to this:</p> <pre><code># Nmap 4.76 scan initiated Thu Dec 3 13:36:29 2009 as: nmap -iL ip.txt -p 80 -r -R -PN --open -oA output Host: 192.168.1.100 () Status: Up Host: 192.168.1.100 () Ports: 80/open/tcp//http/// Host: 192.168.1.100 () Status: Up # Nmap done at Thu Dec 3 13:36:29 2009 -- 3 IP addresses (3 hosts up) scanned in 0.28 seconds </code></pre> <p>I am fairly new to bash scripting so I am not sure where to start with this. If you can help me with this script it would be much appreciated.</p> http://stackoverflow.com/questions/226135/scripting-library-for-delphi 14 Scripting library for Delphi vIceBerg 2008-10-22T15:00:57Z 2009-12-03T11:59:51Z <p>I'm looking to add scripting capabilities to one of my program.</p> <p>Do you know a good scripting library for Delphi?</p> http://stackoverflow.com/questions/1832293/c-scripting-language 4 C# Scripting language Martin 2009-12-02T11:18:03Z 2009-12-03T09:11:51Z <p>This is a somewhat odd question.</p> <p>I want to provide a scripting language for modding games that I build for XNA. If I was deplying these games for the PC then I would just be able to use C# files, compiled at runtime (Using <a href="http://msdn.microsoft.com/en-us/library/3y322t50.aspx" rel="nofollow">reflection.emit</a>) as scripts and that would be fine - a nice simple way to mod the game. However, the .net compact framework (which is what the xbox provides) does not support reflection.emit, so how can I write a scripting language taking this into account?</p> <ol> <li>Are there any projects already doing this</li> <li>Are there any good resources to start my own project to do this</li> <li>What would be the best language to choose? This is for games scripting so it can be a fairly small language so long as it's quite efficient and easy to implement an interpreter for</li> </ol> http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why 70 What PHP framework would you choose for a new application and why? happyappa 2008-08-05T18:16:08Z 2009-12-03T05:36:48Z <p>Over the course of your web development experience, what PHP framework(s) have you worked with? What strengths and weaknesses have you observed in those frameworks? Considering these, what framework would you recommend if beginning a new application?</p> http://stackoverflow.com/questions/1834850/python-powershell-or-other 2 Python, PowerShell, or Other? ecounysis 2009-12-02T18:26:44Z 2009-12-03T00:20:13Z <p>What are the advantages of Python, PowerShell, and other scripting environments? We would like to standardize our scripting and are currently using bat and cmd files as the standard. I think Python would be a better option than these, but am also researching PowerShell and other scripting tools.</p> <p>The scripts would be used to trigger processes such as wget etc to call web services, or other applications/tools that need to run in a specific order with specific parameters.</p> <p>We primarily work with the Windows stack, but there is a good chance we will need to support Unix in the future.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1822619/how-to-send-status-to-the-vim-status-line-after-calling-custom-vim-python-funct 1 How to send status to the VIM status line after calling custom VIM (Python) function Dwaalspoor98 2009-11-30T21:47:10Z 2009-12-02T09:30:47Z <p>I've just created my first VIM script, I wrote it in Python. It's a simple script to switch color schemes from a directory (/vim/etc/colors). I would like to know how to send a notification after the color scheme changed with the name of the selected color scheme to the vim 'statusline'.</p> <p>rson gave an answer to my question, here is an updated (and debugged) version of the script for who is interested (works fine as far as I can test)</p> <p>Implemented (kind of) the suggestions of AI and Caleb, thanks!:</p> <pre><code>" toggleColorScheme 0.9 (l) 2009 by Jasper Poppe &lt;jpoppe@ebay.com&gt; " cycle through colorschemes with F8 and Shift+F8 nnoremap &lt;silent&gt;&lt;F8&gt; :call ToggleColorScheme("1")&lt;CR&gt; nnoremap &lt;silent&gt;&lt;s-F8&gt; :call ToggleColorScheme("-1")&lt;CR&gt; " set directory with color schemes to cycle through let g:Toggle_Color_Scheme_Path = "/etc/vim/colors" function! ToggleColorScheme(paramater) python &lt;&lt; endpython import vim import os paramater = (vim.eval('a:paramater')) scheme_path = vim.eval('g:Toggle_Color_Scheme_Path') colorschemes = [color.split('.')[0] for color in os.listdir(scheme_path) if color.endswith('.vim')] colorschemes.sort() if not vars().has_key('position'): start_scheme = vim.eval('g:colors_name') + '.vim' if start_scheme in colorschemes: position = colorschemes.index(start_scheme) else: position = 0 position += int(paramater) position %= len(colorschemes) vim.command('colorscheme %s' % colorschemes[position]) vim.command('redraw | echo "%s"' % colorschemes[position]) vim.command('return 1') endpython endfunction </code></pre> http://stackoverflow.com/questions/1824494/error-with-redirection 0 Error with redirection Sharat Chandra 2009-12-01T07:12:36Z 2009-12-02T06:44:07Z <p>I'm trying to find average of values in 2nd column in some files. Filenames have following pattern eg:</p> <pre><code>tau_2.54_even_v1.xls tau_2.54_odd_v1.xls tau_1.60_v1.xls tau_800_v1.xls </code></pre> <p>The other filenames can be obtained by replacing variable file with oter variables pmb , xhpl etc .. Here is the script I've written .. Can anyone kindly find the error and let me know ?</p> <pre><code>#!/bin/bash for file in pmb_mpi tau xhpl mpi_tile_io fftw ; do for f in "2.54" "1.60" "800" ;do if [ ${f} = 2.54 ] then for order in even odd ; do echo ${file}_${f}_${order}_v1.xls awk 'sum+=$2 ;END {print "Average = " , $sum/NR &gt; ${file}_${f}_${order}_avrg.xls }' ${file}_${f}_${order}_v1.xls done else echo ${file}_${f}_v1.xls awk 'sum+=$2 ;END {print "Average = " , $sum/NR &gt; ${file}_${f}_avrg.xls }' ${file}_{f}_v1.xls fi done done </code></pre>