active questions tagged script - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:25:23Z http://stackoverflow.com/feeds/tag/script http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816327/get-result-from-shell-script-objective-c 0 Get result from shell script objective-c alexy13 2009-11-29T18:33:34Z 2009-11-29T20:08:57Z <p>I would like to run a shell script, from a file or from an objective-c string (within the code). I would also like the shell script's result to be stored to a variable. I would not like the shell script to be split into arguments (such as setLaunchPath when I run it). For example: running this shell script "mount_webdav idisk.mac.com/mac_username /Volumes/mac_username" instead of "/bin/mount_webdav" then the arguments. Is there anyway to do this? I am using NSTask right now, but it has caused me some errors when I try to put the arguments with it. Here is the posed code:</p> <p>(some of the .m file)</p> <pre><code> NSString *doshellscript(NSString *cmd_launch_path, NSString *first_cmd_pt) { NSTask *task = [[NSTask alloc] init]; // Make a new task [task setLaunchPath: cmd_launch_path]; // Tell which command we are running [task setArguments: [NSArray arrayWithObjects: first_cmd_pt, nil]]; [task setArguments: first_cmd_pt]; NSPipe *pipe = [NSPipe pipe]; [task setStandardOutput: pipe]; [task launch]; NSData *data = [[pipe fileHandleForReading] readDataToEndOfFile]; NSString *string = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding]; [task release]; //Release the task into the world, thus destroying it. return string; } NSString *mount_idisk(NSString *mac_username) { doshellscript(@"/bin/mkdir", [@"/Volumes/" stringByAppendingString:mac_username]); NSString *path_tmp = [mac_username stringByAppendingString: @"/ /Volumes/"]; NSString *idisk_path = [path_tmp stringByAppendingString:mac_username]; //NSLog(@"%@", [@" http://idisk.mac.com/" stringByAppendingString: idisk_path]); NSString *finished_path = [@"http://idisk.mac.com/" stringByAppendingString: idisk_path]; doshellscript(@"/sbin/mount_webdav", finished_path); } </code></pre> <p>... Here is the line I am using to run it: <code> mount_idisk("username"); </code></p> http://stackoverflow.com/questions/1806280/running-mysqlfixprivilegetables-kills-my-root-password 0 running mysql_fix_privilege_tables kills my root password sdmiller 2009-11-27T00:36:49Z 2009-11-28T19:51:44Z <p>I am learning mysql and ran into a problem with 'mysql.proc' missing when trying to create a stored procedure. mysql version 5.1.41.</p> <p>I read that running the script 'mysql_fix_privilege_tables' is supposed to fix the previous error. I am getting a strange side effect... my root password is no longer good anymore when I run this script and can no longer log into mysql because of this. the only solution is to remove mysql and start over. I have done this twice now and have no clue as to why it is affecting my root password. any clues?</p> <p>Updated 11/28: I found it is a bug in workbench with a particular model sync setting. It is removing the mysql database and for some reason when you do a repair, mysql erases all users. Kind of a perfect storm kind of thing I think. </p> http://stackoverflow.com/questions/1809216/how-to-get-vmware-to-run-a-program-within-mac-os-x-via-script-or-alias 0 How to get vmware to run a program within MAC OS X via script or alias Mediahaze 2009-11-27T14:55:18Z 2009-11-27T15:06:36Z <p>On my Mac OS X computer, I am trying to setup a script that will open a particular program ( Visual Studio ) that resides within VMWare. </p> <p>More specifically, when I run the script, I want Visual Studio application to open a specific file that would passed in as a parameter to the script. This file would be shared and accessible to VS.</p> <p>Any ideas? </p> http://stackoverflow.com/questions/1805029/java-1-5-script-engine 0 Java 1.5 Script Engine michael lucas 2009-11-26T18:11:23Z 2009-11-26T18:56:28Z <p>Since Java 1.6 there is this nice Script Engine Manager which let's i.e. execute JavaScript scripts in run time. Is there something similar in functionality in Java 1.5?</p> http://stackoverflow.com/questions/1802280/orm-for-sql-scripting 0 ORM for SQL Scripting xuebi 2009-11-26T08:25:19Z 2009-11-26T09:02:20Z <p>What is the best way to run simple sql scripts in a database (preferably db implementation agnostically)?</p> <p>So, for illustration purposes, using your best/suggested way, i'd like to see a script that creates a few tables with names from an array ['cars_table', 'ice_cream_t'], deletes all elements with id=5 in a table, and does a join between two tables and prints the result formatted in some nice way.</p> <ol> <li>I've heard of Python and PL/SQL to do this </li> <li>Ruby/Datamapper seems very attractive</li> <li>Java + JDBC, maybe</li> <li>Others?</li> </ol> <p>Some of these are mostly used in a full application or within a framework. I'd like to see them used simply in scripts.</p> http://stackoverflow.com/questions/1800585/loading-script-tags-via-ajax 0 Loading script tags via AJAX BahaiResearch.com 2009-11-25T23:11:18Z 2009-11-26T05:36:40Z <p>I have a div tag which is filled with script via an ajax call, but the script does not execute.</p> <p>Is there a way to cause the script to execute?</p> http://stackoverflow.com/questions/1788434/bash-scripting-on-android 0 Bash scripting on Android android.dev 2009-11-24T07:26:01Z 2009-11-26T03:12:52Z <p>Has anybody tried bash scripting on android? I tried to write a simple script on Android's bash shell through adb. I tried the following script which works for me:</p> <pre><code>#sh1 x="hello" echo "$x" </code></pre> <p>But when I do:</p> <pre><code>#sh1 x="hello" if [ -n "$X" ]; then echo "hi" fi </code></pre> <p>The error says <code>[ -n not found</code>!</p> <p>Why do I get this error and is there a work around?</p> http://stackoverflow.com/questions/1798967/dynamically-resize-web-browser-control-in-lotus-notes-subform 0 Dynamically resize web browser control in Lotus Notes subform Sunny 2009-11-25T18:22:40Z 2009-11-25T18:35:32Z <p>I want to create a subform, which contains a web browser control in it. As this subform is going to be placed in different other forms, I'd like to be able to resize the width of the web browser control on postopen, and maybe some other events, so it fits nicely to the size of the parent form.</p> <p>I tried to check "Size object to fit window", but this overlaps the whole window, hiding the other fields and form elements.</p> <p>How can I detect the size of the displaying window using Lotus Script?</p> http://stackoverflow.com/questions/576780/id-like-to-scrape-the-itunes-top-x-rss-feed-and-insert-into-a-db 0 I'd like to scrape the iTunes top X RSS feed and insert into a dB... 2009-02-23T07:19:33Z 2009-11-25T14:13:23Z <p>Preferably I'd like to do so with some bash shell scripting, maybe some PHP or PERL and a MySQL db. Thoughts?</p> http://stackoverflow.com/questions/1035396/bash-shell-script-syntax-error 0 bash shell script syntax error CKeven 2009-06-23T21:37:20Z 2009-11-25T13:42:48Z <p>I wrote a function in bash script. However, it's complaining about syntax. I really can't see what is it..... the error message is [: missing `]'</p> <pre><code>addem() { if [ $# -eq 0] || [ $# -gt 2 ] then echo -1 elif [ $# -eq 1 ] then echo $[ $1 + $1 ] else echo $[ $1 + $2 ] fi } </code></pre> http://stackoverflow.com/questions/1370419/powershell-script-to-disable-re-enable-a-tcp-ip-port 0 PowerShell Script to Disable/Re-enable a TCP/IP Port Mark 2009-09-02T22:10:44Z 2009-11-25T12:00:02Z <p>Is there a way to disable and re-enable a known TCP/IP port in PowerShell?</p> http://stackoverflow.com/questions/1794304/action-script-dynamic-type 1 action script dynamic type? Bin Chen 2009-11-25T02:32:55Z 2009-11-25T02:40:41Z <p>I am curious about code in my action script project:</p> <p>public var _p:Object ...</p> <p>in a function:</p> <p>public function WObject(pp:MovieClip) { _p = pp; _p.Play(); }</p> <p>The Play() function is in MovieClip but not Object, can action script allow such syntax?</p> http://stackoverflow.com/questions/1791635/how-to-kill-main-thread-from-sub-thread-in-jython 0 How to kill main thread from sub thread in Jython JeffGoetz 2009-11-24T17:29:07Z 2009-11-24T20:26:56Z <p>I have a script that creates a thread which after 60 seconds (this thread) needs to kill the main thread. I`m not sure what command I can use to kill the main thread. I'm using Jython 2.5.1 and Thread.interrupt_main doesn't work. </p> <p>Here is the code:</p> <pre><code>import threading def exitFunct(): #exit code here t = threading.Timer(60.0, exitFunct) t.start() for i in range(1, 3000): print i </code></pre> http://stackoverflow.com/questions/1789848/vim-automatically-adding-menu-items-for-scripts-from-a-particular-directory 0 VIM: Automatically adding menu-items for scripts from a particular directory monojohnny 2009-11-24T12:42:51Z 2009-11-24T14:27:20Z <p>I have a number of scripts (Ruby as it happens) I run from VIM, by setting up the startup file to contain (for instance):</p> <pre><code>amenu Ruby.script1 :%!ruby C:\ruby_scripts\script1.rb&lt;cr&gt;&lt;cr&gt; amenu Ruby.script2 :%!ruby C:\ruby_scripts\script2.rb&lt;cr&gt;&lt;cr&gt; ... </code></pre> <p>What I would like to do, is to have VIM automatically check the <code>C:\ruby_scripts</code> directory and assign menu items automatically - can this be done?</p> http://stackoverflow.com/questions/1788086/asp-net-appending-to-http-response 0 ASP.NET: Appending to HTTP response JamesBrownIsDead 2009-11-24T05:52:13Z 2009-11-24T09:47:59Z <p>I have a Page.aspx. I would like to inject a &lt;script&gt; tag into the response stream of Page.aspx, after it has finished writing its output. How could I do this form within the codebehind of Page?</p> <p>If I do this:</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { this.ClientScript.RegisterClientScriptInclude ("dfasfds", this.Request.Path.Replace(".aspx", ".js")); } </code></pre> <p>Then the script appears in the HTML response, but not at the end.</p> <p>If I do this:</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { this.Response.Flush(); this.Response.Write(.../*my javascript*/...); } </code></pre> <p>Then the &lt;script&gt; tag appears at the very beginnning of the document, on the first line.</p> http://stackoverflow.com/questions/1788960/compositescriptrefernce 0 CompositeScriptRefernce jaapie 2009-11-24T09:34:18Z 2009-11-24T09:34:18Z <p>Hi,</p> <p>I'm trying to add a composite scriptreference like this;</p> <p>ScriptReference scriptReference = new ScriptReference("CSSFriendly.JavaScript.MenuAdapter.js", "CSSFriendly"); scriptReference.NotifyScriptLoaded = false; scriptManager.CompositeScript.Scripts.Add(scriptReference);</p> <p>In the CSSFriendly assembly the script resource is defined;</p> <p>[assembly: WebResource("CSSFriendly.JavaScript.TreeViewAdapter.js", "application/x-javascript")]</p> <p>And registered as:</p> <p>ScriptManager.RegisterClientScriptResource(page, type, "CSSFriendly.JavaScript.TreeViewAdapter.js");</p> <p>But the ScriptResource.axd for this js file is still included! It works with MicrosoftAjax.js in System.Web.Extensions, but not with my own assembly.</p> http://stackoverflow.com/questions/874166/sql-server-2008-web-management-scripts 0 SQL Server 2008 web management scripts? GrZeCh 2009-05-17T08:40:58Z 2009-11-24T05:06:33Z <p>Hello,</p> <p>does anyone know what SQL Server 2008 management scripts exists (except myLittleAdmin)?</p> <p>Thanks</p> <p>Clarification: I'm looking for web based management script (which supports SQL Server 2008) other than myLittleAdmin.</p> http://stackoverflow.com/questions/1783961/bourne-shell-scripting-simple-for-loop-syntax 0 Bourne Shell Scripting -- simple for loop syntax 에이바 2009-11-23T15:42:21Z 2009-11-23T20:15:49Z <p>I'm not entirely new to programming, but I'm not exactly experienced. I want to write small shell script for practice. </p> <p>Here's what I have so far:</p> <pre><code>#!/bin/sh name=$0 links=$3 owner=$4 if [ $# -ne 1 ] then echo "Usage: $0 &lt;directory&gt;" exit 1 fi if [ ! -e $1 ] then echo "$1 not found" exit 1 elif [ -d $1 ] then echo "Name\t\tLinks\t\tOwner\t\tDate" echo "$name\t$links\t$owner\t$date" exit 0 fi </code></pre> <p>Basically what I'm trying to do is have the script go through all of the files in a specified directory and then display the name of each file with the amount of links it has, its owner, and the date it was created. What would be the syntax for displaying the date of creation or at least the date of last modification of the file?</p> <p>Another thing is, what is the syntax for creating a for loop? From what I understand I would have to write something like for $1 in $1 ($1 being all of the files in the directory the user typed in correct?) and then go through checking each file and displaying the information for each one. How would I start and end the for loop (what is the syntax for this?). </p> <p>As you can see I'm not very familiar bourne shell programming. If you have any helpful websites or have a better way of approaching this please show me!</p> http://stackoverflow.com/questions/1780504/how-can-i-make-my-batch-script-for-deletion-of-old-files-work 0 How can I make my batch script for deletion of old files work? Hellnar 2009-11-23T00:08:18Z 2009-11-23T14:31:07Z <p>Inside a folder (say c:\test) I want to delete the oldest file if the number of files are over 21.</p> <p>This is what I came up with, issue is that it one time deletes the oldest file, second run it does nothing and deletes the oldest for third, continues like that. Also it doesn't care if the file amount is lower than 21, deletes even if it is lower.</p> <p>Here is the code:</p> <pre><code>SET BACKUPDIR=C:\test SET countfiles=dir BACKUPDIR /b | find /v /c "::" if countfiles GTR 21 ( FOR /F %%i IN ('DIR /B /O-D %BACKUPDIR%') DO SET OLDEST=%%i DEL %BACKUPDIR%\%OLDEST% ) </code></pre> http://stackoverflow.com/questions/1778540/execute-php-script-every-40-miliseconds 3 Execute php script every 40 miliseconds? M28 2009-11-22T12:14:14Z 2009-11-22T13:30:05Z <p>There is some way to execute a php script every 40 miliseconds? I don't know if cronjob is the right way, because 25 times per second require a lot of CPU.</p> <p>Well, If php isn't the correct language, what language I should use?</p> <p>I am making a online game, but I need something to process what is happening in the game, to move the characters, to calculate projectiles paths, etc.</p> http://stackoverflow.com/questions/1778360/subversion-post-commit-script-to-update-working-copy 0 Subversion post-commit script to update working-copy Luis Martins 2009-11-22T10:17:18Z 2009-11-22T10:41:58Z <p>Hi, </p> <p>Im having issues with a simple post-commit script. The goal is to update a different working-copy if a special keyword is present in the commit message: </p> <p>The script im using for testing is: </p> <pre><code>#!/bin/bash REPO="$1" REV="$2" TEST_SERVER="localhost" PROD_SERVER="172.16.16.1" # Check for a deployment signal if ( svnlook log -r $REV $REPO | grep "~~DEPLOY~~" ) then /usr/bin/svn update /users/luismartins/sites/MDF-live fi </code></pre> <p>For some reason the IF condition im checking does nothing when i commit with the ~~DEPLOY~~ keyword present in the commit comments. When i run the script trough text-wrangler i get svnlook error related to the lack of arguments, but thats because its running outside of a subversion commit i believe. </p> <p>Am i doing anything wrong here? </p> <p>Thanks.</p> http://stackoverflow.com/questions/1775727/delete-all-files-if-another-files-in-the-same-directory-has-a-matching-occurence 1 Delete all files if another files in the same directory has a matching occurence of a specific word premier_de 2009-11-21T15:10:30Z 2009-11-21T20:24:21Z <p>I have several files in a specific directory. A specific string in one file can occur in another files. If this string is in other files. Then all the files in which this string occured should be deleted and only 1 file should remain with the string.</p> <p>Example:</p> <pre> file1 ShortName "Blue Jeans" price 89.47 cur EURO file2 ShortName "Blue Jeans" Price 59.47 CUR USD file3 ShortName "Blue Jeans" Price 99.47 CUR GBP </pre> <p>Since the value of ShortName "Blue Jeans" is occuring in file2 &amp; file3. Both this file should be deleted. Similarly files with other ShortName Could any one please help me how can it done via script (ksh, SED, AWK). I am on solaris.</p> <p>Thank you</p> http://stackoverflow.com/questions/1772448/how-can-i-run-an-rdp-file-with-vbscript 0 How can I run an RDP file with VBScript? wahle509 2009-11-20T18:37:21Z 2009-11-20T18:47:01Z <p>So far I have:</p> <pre><code>Set objShell = WScript.CreateObject("WScript.Shell") objShell.Run("""C:\Server01.rdp""") </code></pre> <p>But when I run it, nothing happens. Is it even possible to run an RDP file with VBScript? If so, then what am I doing wrong?</p> http://stackoverflow.com/questions/1768643/bash-script-for-searching-from-a-list-of-files-in-directory 1 bash script for searching from a list of files in directory Sharat Chandra 2009-11-20T06:13:26Z 2009-11-20T07:17:53Z <p>There are around 20 files in a directory . Each file has the string <code>$str</code> inside it.</p> <p>I want to write a script that picks out that row containing the string <code>$str</code> and dump into a file .</p> <p>Each file should dump the searched row into a different file . </p> <p>For example file1 dumps searched row to file called found1 and file2 dumps it to file called found2 etc.... </p> <p>Can anyone please guide me regarding this ?</p> <p>I'm particularly finding it difficult to include the file name in the grep command.</p> <p>I can't go on to include 20 grep commands.</p> http://stackoverflow.com/questions/1653054/how-do-i-deliver-an-excel-2007-vba-script 2 How do I deliver an Excel 2007 VBA script? JustADude 2009-10-31T01:12:48Z 2009-11-20T00:16:06Z <p>Once I've finished writing an Excel 2007 VBA script how to I deliver the Excel 2007 VBA script to the rest of the team members? </p> <p>Is there a way to package an Excel 2007 VBA script so that it can be provided to other team members? </p> <p>Thanks again for any feedback. </p> http://stackoverflow.com/questions/1766474/should-javascript-code-always-be-loaded-in-the-head-of-an-html-document 1 Should javascript code always be loaded in the head of an html document? amvx 2009-11-19T20:57:37Z 2009-11-19T22:48:02Z <p>Is there a blanket rule in terms of how javascript should be loaded. I'm seeing people saying that it should go on the end of the page now. </p> <p>Thoughts?</p> http://stackoverflow.com/questions/1159543/apache-log-rotation-script 1 Apache Log rotation Script Scott 2009-07-21T14:26:58Z 2009-11-19T21:28:11Z <p>I have the following script running to backup my apache logs</p> <pre><code>#!/bin/sh dt=`date +%m%d%Y` cp /var/log/httpd/domainname/www/error_log /var/log/httpd/domainname/www/oldlogs/error_log$dt cat /dev/null &gt; /var/log/httpd/domainname/www/error_log cp /var/log/httpd/domainname/www/access_log /var/log/httpd/domainname/www/oldlogs/access_log$dt cat /dev/null &gt; /var/log/httpd/domainname/www/access_log </code></pre> <p>Which is scheduled via cron. So each night the logs get backed up and emptied. However, the next morning I always get files with weird characters after the date</p> <pre><code>[me@computer oldlogs]# ls access_log07202009?? access_log07212009?? error_log07202009?? error_log07212009?? [me@computer oldlogs]#cat access_log072 access_log07202009^M^Maccess_log07212009^M^M </code></pre> <p>and I'm unable to find what is causing it. Any idea?</p> http://stackoverflow.com/questions/1766003/linux-script-simple-arithmetic-code 0 linux script simple arithmetic code Mawnster 2009-11-19T19:42:08Z 2009-11-19T20:27:32Z <p>So I'm just working on some simple arithmetic code. Here's what I got:</p> <pre><code>echo "The number should be 2"; declare -i input added input= date +%w let added="input/2" echo "$added" </code></pre> <p>when I run it the output is </p> <pre><code>4 0 </code></pre> <p>I'm trying to just get 2. What the heck am I doing wrong?</p> http://stackoverflow.com/questions/1765886/can-netsuite-suitescript-modify-a-file-in-the-file-cabinet 0 Can Netsuite Suitescript modify a file in the file cabinet? Rob 2009-11-19T19:24:46Z 2009-11-19T19:24:46Z <p>I have a large product list and need to generate a static file of it, and have that file be accessible in my website. Currently, I generate the list, and upload it to the file cabinet. I wish to automate this process. I would like to schedule a SuiteScript to run each night and generate this list and update a file in the file cabinet.</p> <p>Can this be done?</p> <p>thanks</p> http://stackoverflow.com/questions/1758201/how-can-i-open-an-html-file-as-a-text-file-to-read-the-code-using-vbscript 0 How can I open an HTML file as a text file to read the code using VBScript? wahle509 2009-11-18T18:48:55Z 2009-11-19T17:13:39Z <p>I have a lot of HTML pages that need the same few lines of text changed on them. To reduce the time it will take to manually open each one in Notepad and find the text and replace it with the new text, I would like to create a script to do this for me.</p> <p>How can I open an HTML file, read the code the makes up the page and find &amp; replace the text in it? I know how to open, read, find/replace, write, close a text file, but is there a way to do it with HTML files?</p>