active questions tagged command-line - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:03:05Z http://stackoverflow.com/feeds/tag/command-line http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/401971/os-x-creating-or-extracting-preview-jpg-png-of-eps-file 1 OS X: creating or extracting preview(.jpg,.png) of .eps file Ronn Lixx 2008-12-31T00:49:48Z 2009-11-30T21:54:59Z <p>I'm using a mac and looking to batch convert a large amount of eps files and create jpg previews of each. I'm looking for preferably a command-line utility, or some type of workflow to easily batch a large number of files. </p> <p>Thanks for any ideas or input</p> http://stackoverflow.com/questions/469152/using-shellexecuteex-and-capturing-standard-in-out-err 1 Using ShellExecuteEx and capturing standard in/out/err alrashedf 2009-01-22T13:40:18Z 2009-11-30T19:46:26Z <p>I'm using ShellExecuteEx to execute a command in C. Is there a way to use ShellExecuteEx and capture standard in/out/err?</p> <p>Note: I don't want to use CreateProcess.</p> http://stackoverflow.com/questions/1821402/creating-an-xcode-project-from-the-command-line 1 Creating an XCode project from the command line? unknown (yahoo) 2009-11-30T18:06:30Z 2009-11-30T18:15:13Z <p>I get a new project coming across my desk on an hourly basis. They all adhere to a very strict format, so it isn't terribly difficult to create a new project from scratch every time, but it is something that I should be able to do from a script that just constructs and builds the entire project. It would save me a helluva lot of time to have this automated.</p> <p>The actual build is already done by automated, scripted systems. I just need to be able to build the project - either from scratch or from a template - each time I go to do the build.</p> http://stackoverflow.com/questions/1820525/tool-to-generate-gui-for-command-line-program 0 Tool to generate GUI for command line program Baffe Boyois 2009-11-30T15:34:56Z 2009-11-30T16:03:21Z <p>I'm looking for a program that semi-automatically builds a GUI for a Windows command line program.</p> <p>That is, I want to give it an arbitrary command line program and somehow describe its usage ("It takes a list of filenames, and the --foo and --bar options followed by a string") and it will create a new GUI wrapper program that allows selection of files with a "Browse" dialog box and has text boxes for foo and bar.</p> <p>I remember having tried a program like this before, but I don't remember what is was called and google fails to remind me.</p> http://stackoverflow.com/questions/1820308/users-have-open-files-on-backupsharedfolder-continuing-the-operation-will-force 0 Users have open files on BackupSharedFolder. Continuing the operation will force the files closed. Paresh 2009-11-30T14:57:43Z 2009-11-30T14:57:43Z <p>I am using below sql statement to create shared folder with permission<br> EXEC xp_cmdshell 'net share BackupSharedFolder=D:\testshared /REMARK:"test shared"'</p> <p>It is working fine with create shed folder.</p> <p>then i will use below sql command to remove shared EXEC xp_cmdshell ' net share BackupSharedFolder /delete"'</p> <p>Above is also working fine if shared folder is not opened.</p> <p>if shared folder is opened.It giving error like following "Users have open files on BackupSharedFolder. Continuing the operation will force the files closed. Do you want to continue this operation? (Y/N) [N]: No valid response was provided."</p> <p>and ask for prompt for Yes or NO.</p> <p>So, how can i force sql command to yes and remove share by this XEC xp_cmdshell ' net share BackupSharedFolder /delete".</p> http://stackoverflow.com/questions/1819499/how-do-i-get-the-current-users-desktop-folder-location-after-they-have-moved-i 0 How do I get the current user's desktop folder location *after* they have moved it? sfjedi 2009-11-30T12:21:52Z 2009-11-30T12:21:52Z <p>I'm hoping there's a way to play with environment variables to achieve this because I need to access this in a Windows command shell.</p> <p>I found the directory in [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders] Desktop, but I have no idea how to access this information from a command shell!</p> <p>%UserProfile% does <em>not</em> work for what I'm trying to do. It only works if they haven't <em>moved</em> their special folders.</p> http://stackoverflow.com/questions/1819346/net-c-gui-application-command-line 1 .NET C# GUI application Command line jab 2009-11-30T11:51:05Z 2009-11-30T12:12:22Z <p>A beginner question. I am trying to use the command line arguments in a GUI (.NET + WPF) C# application. I've read that in VB.NET exists something like My.Application.CommandLineArgs but i haven´t found the C# equivalent.</p> <p>I have hacked the Main function in the application class to include the string[] argv parameter and pass it to the application class constructor but i don't think that will be the correct way to access the command line parameters.</p> <p>Which is the correct way to access a C# GUI WPF application?</p> <p>Thaks in advance</p> http://stackoverflow.com/questions/1811540/processing-possibly-optional-arguments-in-python 1 Processing (possibly) optional arguments in Python Mark Roddy 2009-11-28T04:21:38Z 2009-11-28T09:23:09Z <p>I am working on a series of command line tools which connect to the same server and do related but different things. I'd like users to be able to have a single configuration file where they can place common arguments such as connection information that can be shared across all the tools. Ideally, I'd like something that does the following for me:</p> <ol> <li>If the server address is specified at the command line use this and ignore any other values</li> <li>If the server address is not specified at the command line but is in a config file that is specified at the command line use this address. Ignore any other values.</li> <li>If the server address is not specified at the command line or a config file specified at the command, but is available in a in a config file in the user's home directory (say <em>.myapprc</em>), use this value.</li> <li>If the server address is not specified in any of the above mechinisms exit with an error message.</li> </ol> <p>The closest I've seen to this is the <a href="http://www.gustaebel.de/lars/configparse/" rel="nofollow">configparse</a> module, which from what I can tell offers an option parser that will also look at config files, but does not seem to have the notion of "Must be specified somewhere" which I need.</p> <p>Does anyone know of an existing module that can cover my use case above? If not, a simple extension to optparse, configparse, or some other module I have not reviewed would also be greatly appreciated.</p> http://stackoverflow.com/questions/1811640/imagemagick-convert-pdf-to-png 1 Imagemagick convert pdf to png Levi 2009-11-28T05:08:32Z 2009-11-28T05:10:40Z <p>I am rather new to using the command line and php. That being said I have been trying to figure out how to use ImageMagick with the exec() function. I have this currently,</p> <pre><code>$command="/usr/local/lib/ImageMagick convert images/a.pdf images/a.png"; if(exec($command)){ echo 'yes'; } else{ echo 'no'; } </code></pre> <p>Which is returning 'no'. I believe I am missing something about how to execute convert from the correct directory. Is my $command set up properly? (I was given the path to ImageMagick from my web host, Lunarpages).</p> <p>I have read through some of the other questions regarding ImageMagick but I haven't found much to help me set up my command.</p> <p>Thanks for any help, <br> Levi</p> http://stackoverflow.com/questions/1810962/java-commons-cli-options-with-list-of-possible-values 3 Java commons-cli, options with list of possible values Alexandru 2009-11-27T23:17:04Z 2009-11-28T00:10:10Z <p>How can I make an option accept only some specified values like in the following example:</p> <pre><code>$ java -jar Mumu.jar -a foo OK $ java -jar Mumu.jar -a bar OK $ java -jar Mumu.jar -a foobar foobar is not a valid value for -a </code></pre> http://stackoverflow.com/questions/1808843/how-to-get-average-number-of-times-a-line-in-a-file-is-repeated 0 How to get average number of times a line in a file is repeated? Evgeny Shadchnev 2009-11-27T13:40:21Z 2009-11-27T13:52:11Z <p>Suppose I have a file of five lines with IP addresses:</p> <pre><code>1.2.3.4 5.6.7.8 5.6.7.8 9.9.9.9 5.6.7.8 </code></pre> <p>I need to find the average number of times every IP is repeated consecutively. In this example, every sequence of the same IPs has the length of 1, except for 5.6.7.8, which is repeated twice. So, for this example the answer is (1 + 2 + 1 + 1) / 4 = 1.25.</p> <p>I'm trying to figure out how many times on average the users clicked the download button on my website before either giving up or realising that they should react to Firefox addon installation warning above the page.</p> <p>Can this be done in a command line or I have to write a script to do it? I'm fine with writing a ruby script for it but I wonder if it can be done with a smart oneliner.</p> http://stackoverflow.com/questions/723424/controlling-a-windows-console-app-w-stdin-pipe 1 Controlling a Windows Console App w/ stdin pipe Eric Holmberg 2009-04-06T22:01:25Z 2009-11-27T10:05:32Z <p>I am trying to control a console application (JTAG app from Segger) from Python using the subprocess module. The application behaves correctly for stdout, but stdin doesn't seem to be read. If enable the shell, I can type into the input and control the application, but I need to do this programmatically. The same code works fine for issuing commands to something like cmd.exe.</p> <p>I'm guessing that the keyboard is being read directly instead of stdin. Any ideas how I can send the application input?</p> <pre><code>from subprocess import Popen, PIPE, STDOUT jtag = Popen('"C:/Program Files/SEGGER/JLinkARM_V402e/JLink.exe"', shell=True, universal_newlines=True, stdin=PIPE, stdout=PIPE, stderr=STDOUT) jtag.stdin.write('usb\n') jtag.stdin.flush() print "Stdout:" while True: s = jtag.stdout.readline() if not s: break print s, jtag.terminate() </code></pre> http://stackoverflow.com/questions/1807086/how-can-i-see-a-log-of-internet-connectiones-using-command-prompt 0 How can i see a log of internet connectiones using command prompt? Jcubed 2009-11-27T06:25:47Z 2009-11-27T06:30:35Z <p>OK, i know there is a way you can get command prompt to display a log of what programs connect to the internet and stuff, but i don't know what the command is. I'm using windows vista.</p> http://stackoverflow.com/questions/1605493/natural-language-command-language 1 Natural language command language peter.murray.rust 2009-10-22T07:06:14Z 2009-11-26T15:40:54Z <p>I'm interested in developing a natural language command language for a domain with existing rules. I was very impressed when Terry Winograd's <a href="http://en.wikipedia.org/wiki/Shrdlu" rel="nofollow">SHRDLU</a> showed the way (the conversation below is 40 years old! Astonishing). Can we do better now and if so where can I get examples?</p> <blockquote> <p>Person: Pick up a big red block.<br /> Computer: OK.<br /> Person: Grasp the pyramid.<br /> Computer: I don't understand which pyramid you mean.<br /> Person (changing their mind): Find a block which is taller than the one you are holding and put it into the box.<br /> Computer: By "it", I assume you mean the block which is taller than the one I am holding.<br /> Computer: OK.<br /> Person: What does the box contain?<br /> Computer: The blue pyramid and the blue block.<br /> Person: What is the pyramid supported by?<br /> Computer: The box.<br /> Person: How many blocks are not in the box?<br /> Computer: Four of them.<br /> Person: Is at least one of them narrower than the one which I told you to pick up?<br /> Computer: Yes, the red cube.</p> </blockquote> <p>I have an ontology for the domain so can reason over common problems.</p> http://stackoverflow.com/questions/1803592/searching-through-stackoverflow-com-from-the-commandline-bash 1 Searching through Stackoverflow.com from the commandline/bash stalkerh 2009-11-26T13:09:45Z 2009-11-26T13:28:45Z <p>As the title says i am looking for a way to search through stackoverflow.com using only the command line specifically bash in linux.</p> <p>Things I need to accomplish :</p> <blockquote> <p>I just need to get the top 10 answers for my question or even top 5.</p> <p>Plain Text Output , i.e. strip HTML out if possible.</p> </blockquote> <p>Also I would prefer if you didnt give a answer that required elinks or something similar.</p> http://stackoverflow.com/questions/1798040/get-last-file-commit-date-from-svn 1 Get Last file Commit Date from SVN JoelHess 2009-11-25T16:13:31Z 2009-11-25T17:55:54Z <p>Noob to Subversion, so please bear with me.</p> <p>Is there a way to get the last commit date for a file from the command line?</p> http://stackoverflow.com/questions/870258/command-line-parser-for-qt4 2 Command line parser for Qt4 elcuco 2009-05-15T18:50:15Z 2009-11-25T17:21:21Z <p>I am looking for a command line parser for Qt4. </p> <p>I did a small google search, and found this: <a href="http://www.froglogic.com/pg?id=PublicationsFreeware&amp;category=getopt" rel="nofollow">http://www.froglogic.com/pg?id=PublicationsFreeware&amp;category=getopt</a> however it lacks support for "--enable-foo" and "--disable-foo" switches. Besides that, it looks like a real winner.</p> http://stackoverflow.com/questions/1798221/does-windows-move-command-delete-the-file-only-on-successful-completion 0 Does Windows Move command delete the file only on successful completion? [closed] IronicMuffin 2009-11-25T16:38:00Z 2009-11-25T16:48:35Z <p>This may be a stupid question, but I'm erring on the side of caution here.</p> <p>If I'm using Windows command line/batch files to <strong>Move</strong> a file from one server to another and we have a network failure, what will happen to the original file?</p> <p>I would assume it remains untouched until fully moved, and then deleted, but I need to be sure. My fear is that it deletes bytes as they are moved, which would be bad.</p> <p>If that isn't the case, is there a better way than <strong>Copy</strong>ing the file and <strong>Del</strong>eting after the copy completes?</p> <p>Thanks for your help.</p> <p>EDIT: I suppose super user would have been better. This is part of a job kicked off by code, so my first thought was to come here.</p> http://stackoverflow.com/questions/1795976/can-the-unix-list-command-ls-output-numerical-chmod-permissions 2 Can the Unix list command 'ls' output numerical chmod permissions? Jon Winstanley 2009-11-25T10:21:35Z 2009-11-25T11:04:44Z <p>Is it possible when listing a directory to view numerical unix permissions such as 644 rather than the symbolic output -rw-rw-r--</p> <p>Thanks.</p> http://stackoverflow.com/questions/213798/would-python-make-a-good-substitute-for-the-windows-command-line-batch-scripts 10 Would python make a good substitute for the windows command line/batch scripts? Lawrence Johnston 2008-10-17T20:48:26Z 2009-11-25T00:17:48Z <p>I've got some experience with bash, which I don't mind, but now that I'm doing a lot of windows development I'm needing to do basic stuff/write basic scripts using the windows command line language. For some reason said language really irritates me, so I was considering learning Python and using that instead.</p> <p>So my question is is Python suitable for such things... moving files around, creating scripts to do things like unzipping a backup and restoring a SQL database, etc.</p> http://stackoverflow.com/questions/1791730/log-file-creation-problem-in-unix 0 log file creation problem in unix john 2009-11-24T17:44:50Z 2009-11-24T19:00:59Z <p>i have command </p> <blockquote> <p>ccv</p> </blockquote> <p>this will output as below</p> <pre><code> Your Project : gdgdd750V64OG , Building Block : cgd9gdd . </code></pre> <p>if i do </p> <blockquote> <p>ccv | awk '{ print $9}'</p> </blockquote> <pre><code> cgd9gdd </code></pre> <p>now i am tring to create a log file by running a build process</p> <pre><code>&amp; tee log_`date +%Y%m%d%H%M%S`_`ccv | awk '{ print $9}'` </code></pre> <p>but this is not creating the log corrrectly. instaed have same logs with thier name as each and every field of the output of ccv as above.that is "Your Project : gdgdd750V64OG , Building Block : cgd9gdd ."for each and every word including . , there is a file and all files are same copies. is there anything wrong with the log file creation?</p> http://stackoverflow.com/questions/141780/korn-shell-wraparound 3 Korn shell wraparound allenratcliff 2008-09-26T20:31:26Z 2009-11-24T18:44:15Z <p>Okay, I'm sure this is simple but it is driving me nuts. I recently went to work on a program where I've had to step back in time a bit and use Redhat 9. When I'm typing on the command line from a standard xterm running Korn shell, when I reach the end of the line the screen slides to the right (cutting off the left side of my command) instead of wrapping the text around to a new line. This makes things difficult for me because I can't easily copy and paste from the previous command straight from the command line. I have to look at the history and paste the command from there. In case you're wondering, I do a lot of command-line awk scripts that cause the line to get quite long. </p> <p>Is there a way to force the command line to wrap instead of shifting visibility to the right side of the command I'm typing? I've poured through man page options with no luck. I'm running XFree86 4.2.99.903(174) and KSH 5.2.14. Thanks.</p> http://stackoverflow.com/questions/1786080/apache2-php5-and-interbase-firebird-on-windows-2003-xp 0 Apache2, PHP5, and Interbase/Firebird on Windows 2003/XP Michael Fontenot 2009-11-23T21:23:31Z 2009-11-24T15:14:33Z <p>I have recently upgraded from Apache 1.26 and PHP 4.3 to 2.2.11 and 5.2.9 respectively. With my original setup I had a scheduled task set to run every Sunday for a weekly newsletter. It would connect to my database (Interbase/Firebird) to find out what events were opening for the following week and get the list of addresses the email will be sent to. Of course, I had to change how PHP the task was setup since command line execution has changed slightly from version 4 to 5. Once that was fixed the real problem reared it's head.</p> <p>Now when executing any script from the command line I cannot connect to my database. I receive the following error from ibase_errmsg: Unable to complete network request to host "localhost". Failed to locate host machice. Undefined service gds_db/tcp.</p> <p>The same script works perfectly from the browser. Also, the database connect code is used all through my site for logging in, getting records, and updating records.</p> <p>If anyone has any idea why a script will not connect to the database when executed from the command line, please help. Your advice is greatly appreciated.</p> <p>Thanks, Michael</p> http://stackoverflow.com/questions/1790437/running-xulrunner-multiple-times-concurrently 0 Running xulrunner multiple times concurrently David Fraser 2009-11-24T14:30:00Z 2009-11-24T14:34:19Z <p>We have an xulrunner application that is running as a background html to pdf converter. This is essentially a commandline application and shows no user interface. However, xulrunner defaults to trying to share profiles and instances of the application. How can we run multiple instances of the application concurrently without hitting profile locking etc?</p> http://stackoverflow.com/questions/1787639/lame-commands-line-switch-to-c-c-comands-translations 0 LAME commands line switch to C/C++ comands translations? Ole Jak 2009-11-24T03:44:23Z 2009-11-24T09:10:51Z <p><a href="http://lame.sourceforge.net" rel="nofollow">LAME</a> commands line switch to C/C++ commands translations?</p> <p>I have some <a href="http://lame.sourceforge.net" rel="nofollow">LAME</a> commands line switches algorithm. I want to port it into C/C++ how to do it - where are the translations?</p> <p>BTW: LAME = lame.sourceforge.net, an MP3 encoder.</p> http://stackoverflow.com/questions/982481/trying-to-build-and-publish-asp-net-website-from-command-line-using-aspnetcompil 1 Trying to Build and Publish Asp.net website from command line using aspnet_compiler grobartn 2009-06-11T17:26:54Z 2009-11-24T05:00:03Z <p>I am trying this. I have built asp.net website. When I publish to IIS through VS2008 it works fine. Lets say my site is at c:\projects\Website1\ I want to publish it to c:\Inetpub\wwwroot\WebsiteOne</p> <p>I am trying to mimic publish from studio. That is publish and remove anything that is in side.</p> <p>I tried this: aspnet_compiler -v/WebsiteOne -f c:\Inetpub\wwwroot\WebsiteOne</p> <p>Error: error ASPRUNTIME: The precompilation target directory (c:\Inetpub\wwwroot\WebsiteOne) cannot be in the same tree as the source application directory (c:\inetpub\wwwroot\WebsiteOne).</p> <p>When I tried this: aspnet_compiler -v/WebsiteOne</p> <p>I get error This application is already precompiled.</p> <p>Anyone who could give me an insight on how to do compile line building and publishing of website </p> <p>Thanks</p> http://stackoverflow.com/questions/1767384/ls-command-how-can-i-get-a-recursive-full-path-listing-one-line-per-file 1 ls command: how can I get a recursive full-path listing, one line per file? dreftymac 2009-11-19T23:39:07Z 2009-11-23T23:52:14Z <p>How can I get ls to spit out a flat list of recursive one-per-line paths?</p> <p>For example, I just want a flat listing of files with their full paths:</p> <pre><code>/home/dreftymac/. /home/dreftymac/foo.txt /home/dreftymac/bar.txt /home/dreftymac/stackoverflow /home/dreftymac/stackoverflow/alpha.txt /home/dreftymac/stackoverflow/bravo.txt /home/dreftymac/stackoverflow/charlie.txt </code></pre> <p><code>ls -a1</code> almost does what I need, but I do not want path fragments, I want full paths.</p> <p>Anyone?</p> http://stackoverflow.com/questions/852665/command-line-progress-bar-in-java 3 Command line progress bar in Java g andrieu 2009-05-12T13:03:29Z 2009-11-23T21:32:53Z <p>I have a Java program running in command line mode. I would like to display a progress bar, showing the percentage of job done. The same kind of progress bar you would see using wget under unix. Is there a library to make this possible ?</p> http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec 1 Uninstalling an MSI file from the command line without using msiexec xarzu 2009-01-16T10:37:02Z 2009-11-23T19:37:52Z <p>msiexec is a command prompt software that installs an msi program.</p> <p>But I have found that you can install an msi file from the command line by just typing in the name of the msi file on the command line.</p> <p>But in order to uninstall the msi file, it seems you have to call the msiexec program and give it an /x or /uninstall.</p> <p>Does anyone know how I can uninstall and msi from the command line without using the msiexec routine?</p> http://stackoverflow.com/questions/1388876/how-to-change-the-compression-style-of-a-tiff-image-using-sips 0 How to change the compression style of a TIFF image using sips? Dhanaraj 2009-09-07T11:21:39Z 2009-11-23T17:00:04Z <p>I am a Mac guy,</p> <p>How to get the PackBits compression using <a href="http://developer.apple.com/Mac/library/documentation/Darwin/Reference/ManPages/man1/sips.1.html" rel="nofollow">sips</a>?</p> <p>Below one for LZW works fine.</p> <pre><code>sips -s formatOptions lzw /DefaultGroup.tif </code></pre> <p>But this fails:</p> <pre><code>sips -s formatOptions packbits /DefaultGroup.tif </code></pre> <p>Any idea why?</p>