The command-line-tool tag has no wiki summary.
2
votes
0answers
15 views
perl Getopt::Long::GetOptions usage
I am new to perl and wanted to use Getopt::Long::GetOptions for getting command line options to the script.
I have requirement like this :-
1.) perl script.pl -c <name1> -c <name2> -m ...
0
votes
2answers
18 views
OSX: Execute same command on all files within a folder
i am using a command-line tool called TMX (https://github.com/tonybeltramelli/TMXResolutionTool)
I want to execute this command on every .png file in a certain folder. How can i do that?
This is how ...
2
votes
2answers
51 views
Extract text between HTML tags
I have many HTML files from which I need to extract text. If it's all on one line, I can do that quite easily but if the tag wraps around or is on multiple lines I can't figure how to do this. Here's ...
-1
votes
0answers
21 views
Creating custom icon with mac built-n commands without using apple developer tools
is there any way to compile a resource fork of a file (.rsrc) with MAC OS built-in commands without using the Developer Tools.
I'm looking alternative of these following commands in MAC OS built-in ...
0
votes
0answers
8 views
MKS Integrity Command line API
Has anyone here got experience in building a parser for the MKS Integrity command line API. I am planning to build an API (in C#) and would need to build a CLI result parser which I could use to parse ...
1
vote
2answers
287 views
Command Line Tools for Xcode 4.2
Where can I download Command Line Tools for Xcode 4.2 (Snow Leopard)?
It's not in https://developer.apple.com/downloads/index.action
I need it to develop Titanium Android Module.
Any ideas ?
2
votes
0answers
20 views
“wput” multiple files from command line? [migrated]
You can upload a single file with wput:
wput file ftp://username:passwd@ipaddress/file
is there a way to upload multiple? Maybe something like:
wput {file1,file2} ...
0
votes
0answers
6 views
How to tell if a pdf contains annotations, highlighting from the command line
I have a bunch of folders with thousands of pdfs, some of which have annotations and highlighting. Any command-line magic to make a list of those which do have annotations and or highlighting?
0
votes
1answer
66 views
Xcode 4 file input/output, command line tool C++
I'm trying to figure out where to save multiple .txt files so that i can have a command line tool project in Xcode read directly in from them while running it.
I understand that Xcode compiles ...
1
vote
1answer
46 views
Run prolog from command prompt,get input from file and send output to a file
I want to run swipl prolog through command prompt,I want to read input.txt as a query file and want to output result to output.txt
My command line command:
swipl -f asd.pl < input.txt > ...
0
votes
2answers
164 views
Setting an environment variable in Mac OSX 10.8 [closed]
I feel quit stupid asking this, but I am completely unable to set an environment variable in Mac OSX 10.8.
I'd greatly appreciate some specific instructions on which files to edit, what is the ...
2
votes
1answer
90 views
The best design for a command-line tool [closed]
It's a simple task, let me briefly describe it!
I'm supposed to code a command-line tool that takes a file-name as an argument, the file
that I'm gonna read consists of lines, each line supposed to ...
-1
votes
1answer
37 views
Regression testing system which includes compiling the tool, testing and reporting results
I want to set up an automation system to run nightly regression tests for a command line tool on a Linux environment. There are some automation scripts which are written in Ruby, but I'd like a ...
0
votes
0answers
29 views
command line instruments not returning any value
Following http://stackoverflow.com/a/11164753/1109829, I tried to execute an ui automation script (that works within instruments, GUI mode) using the following command, but it failed to return any ...
1
vote
1answer
147 views
Android Command Line Tool - Ant Debug in project with libraries
I created a test project to understand how to build and run the tests using command line tool. I managed to create a project, updated it with
android update project -p .
and debug with
ant debug
...
1
vote
1answer
67 views
How to install PL/R on Mountain Lion? make searching wrong path?
I'm trying to install PL/R on Mountain Lion 10.8.2, I've installed R 2.15.3 from r-project and PostgreSQL 9.1 from KyngChaos. I've got PL/R 8.3.0.14 from http://www.joeconway.com/plr/. I've put the ...
0
votes
2answers
63 views
How can I get my Cocoa command line tool to know the working path that it was called from in the terminal?
The goal of my cocoa command line program is to take an argument which is the name of a file and import it into the program for parsing. I want to be able to call my program lets say, "ParseFile" ...
1
vote
1answer
90 views
XCode ibtool command looking for non-existing directory
I am trying to use the ibtool command-line utility. I have opened Terminal in the project directory, where the .xib I want to process is, and I wrote the command as stated in Apple's documentation:
...
1
vote
1answer
456 views
How to add Core Foundation framework in XCode 4 to a bare Command Line Tool if frameworks list is empty?
I created a new command line tool (the way to create a Mac OS X command line app) using XCode 4.5, but I now want to add a framework to it. The frameworks list in the build phases is empty.
I can ...
-1
votes
1answer
327 views
Create command line tool for Aptana Studio 3 like in Sublime Text 4 Ruby
I am trying the Ruby On Rails Tutorial (railstutorial.org) and want to use Aptana Studio 3, however, the author gives a few abbreviations for gvim, subl or mate, not Aptana. How can I do this ...
2
votes
1answer
56 views
how to edit file in a separated screen window in vifm version > 0.4
I just installed vifm-0.7.4. It included much more functions than version 0.4. However, I am missing one behavior in the old version. That is, if you enable screen in vifm:
:screen
once you press l ...
1
vote
2answers
95 views
Dynamic profiling for java program
I want to profile a fairly large java program dynamically. More specifically, I want to generate a dynamic call graph for one run of the program. Is there a commandline profiler to generate such ...
2
votes
0answers
123 views
How does one display * when typing a password in a C/C++ command-line tool? [duplicate]
Possible Duplicate:
Read a password from std::cin
Replace input with “ * ” C++
I'm looking for the C/C++ comparable way of doing <input type="password" /> for allowing the user to ...
0
votes
2answers
2k views
PSEXEC - “The Handle is invalid” When running the command as System User
This is the command that works fine if run from a user-spawned command prompt:
PSEXEC \\xxx.xxx.xxx.xxx -u xxxx -p xxxx -accepteula cmd /c "TYPE C:\Pyxislog\PYXIS01.log|Find/i "%ID%"" >nul
...
3
votes
1answer
644 views
Superimposing two videos onto a static image?
I have two videos that I'd like to combine into a single video, in which both videos would sit on top of a static background image. (Think something like this.) My requirements are that the software I ...
1
vote
3answers
1k views
How to set up working logic unit tests target in Xcode 4.5 “Command Line Tool” project?
Having trouble getting unit tests set up for a specific scenario. Here's what I'm trying:
In Xcode 4.5, I created a simple OSX "Command Line Tool" application project (Foundation).
Note that Xcode ...
20
votes
6answers
4k views
Faster alternative to Python's SimpleHTTPServer
Python's SimpleHTTPServer is a great way of serve the contents of the current directory from the command line:
python -m SimpleHTTPServer
However, as far as web servers go, it's very slooooow...
...
2
votes
1answer
319 views
How to deploy a Mac Command Line Tool
I've created a console application using the Xcode OS X Command Line Tool project template.
When everything is said and done, where are the actual "Release" binaries placed on my machine? After ...
0
votes
0answers
81 views
Command Line Utility to pass JSON string to a service
I have a GUI which passes a JSON string to a service. The service parses the JSON string for appropriate functions.
Now I have been asked to create a command line interface for it instead of the GUI. ...
1
vote
0answers
258 views
Add xcode-select to PATH vs. Install Xcode Command Line Tools?
Now with Xcode 4.5, is it OK to just add the following line to my ~/.bash_profile rather than installing the Xcode Command Line Tools?
export PATH="$PATH:`xcode-select ...
0
votes
1answer
108 views
Gtk3: getting the icon file name for a mime type
I’m writing a command line program to get the Gtk3 icon file name associated with a mime type... the idea’s to be able to do this:
$ ./gtk-mimetype-icon text/html
Mime type: text/html
Icon file: ...
2
votes
1answer
645 views
iOSOpenDev command line tool build error
Okay, so i have spent all day searching the web for why this is happening.
I have installed the iOSOpenDev XCode Templates, and I opened a new command line tool project, and its giving me this error:
...
0
votes
1answer
439 views
Phonegap iOS Command line tools ./create
I want to create a iOS app using phonegap. My issue is that ./create <project_folder_path> <bundle_id> <project_name> is not working at all. ./create ...
6
votes
1answer
963 views
Mac OS app, sandbox with command line tool?
I've made an app which includes a command-line tool. I have enabled the app's sandbox, and tested that it works. I've also code-signed both the app and the command line tool.
But when I upload the ...
0
votes
0answers
91 views
Problems using ActiveRecord in a command line utility
I have created a command line utility that uses ActiveRecord as an ORM. It works great during development. Since deploying it, it gets run 1k-2k times per week, submitting records to the database by ...
9
votes
3answers
2k views
Xcode 4.4 : Preferences : Downloads : Components : Command Line Tools fails with “Failed with HTTP status 403: forbidden”
does anyone know what i might have to change (permissions on a particular file; clearing out a Keychain Access item) to resolve an issue when i attempt to install command line tools inside of my ...
1
vote
1answer
93 views
Commander.js : script not waiting for user input
I am just starting to use node.js and commander.js so it might be a stupid question...
So I am trying to make a command line tool where I need to ask some info to the user. I am trying to use ...
0
votes
1answer
305 views
Mac OS command line tool handle asynchronous export video for re-encoding (Edited and working now)
I tested the export method on an iOS application and it works fine. But when I moved it to a command line project the method exportAsynchronouslyWithCompletionHandler doesn't work.
I know the ...
1
vote
2answers
160 views
Cocoa Command Line Tools Method Declerations
So this question is to help me better understand the inner workings of the Cocoa-touch framework and it may seem like a very simple question.
If you were to create a command line tool using Xcode, ...
0
votes
0answers
92 views
python multithreaded ssh app
I have an app I've scraped together to try and spawn 3 threads and ssh into a server simultaneously.
I wrote an obviously offensively coded application which I know is wrong which I am looking for ...
-2
votes
1answer
169 views
Run Command-Line-Tool (Foundation) made with Xcode on Linux [closed]
I an new to linux, and I have a huge problem...
I usually run Command-Line-Tools made with Xcode (Foundation) on my Mac terminal...
I thought I can do this either on Linux, but it doesn't work!!
...
4
votes
2answers
388 views
Cocoa wrapper for an interactive Unix command
Ok, so I know you can make an NSTask to run command line tools with Objective-C:
NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/gdb"];
[task launch];
I'm just wondering ...
1
vote
3answers
480 views
How to check if another instance of the app/binary is already running
I'm writing a command line application in Mac using Objective-c
At the start of the application, i want to check if another instance of the same application is already running. If it is, then i ...
1
vote
1answer
4k views
Where to open Xcode 4.2 Command line Tools?
I need to re-code sign an ipa file. A tutorial explains recode signing via xcode CLT. For that first of all I need CLT for xcode. I am using xcode 4.2. So where do i find the command line tools for ...
0
votes
1answer
61 views
Can I tell saxon to figure out the XSLT version on its own?
I have to run an XSLT 2.0 stylesheet with saxonb-xslt (which warns about 1.0 stylesheets) and an XSLT 1.0 stylesheet with saxon-xslt (which wont work on 2.0 stylesheets). Is there a way to tell saxon: ...
0
votes
1answer
300 views
How do I make a C program executable on the command line in Minix 3?
I need to make a program, ioloop.c, which takes two command line parameters that determine the number of iterations of two nested for loops. The inner loop performs a more time-consuming function, ...
0
votes
2answers
56 views
Why (and what influence does it have) one has to select type of project in xcode->mac os x-> command line tool?
While creating a command line tool (Mac OS X) project in XCode, one has to select "type" of project out of these options :-
1.Foundation
2.Core Services
3.Core Foundation
4.C
5.C++
Question is : WHY ...
1
vote
1answer
555 views
Can't run sox commands via PHP shell_exec
I've searched for help and tried everything on this thread, but still can't make this work. I'm trying to run the sox (Sound eXchange) command line utility from my PHP script using shell_exec(). I ...
1
vote
2answers
539 views
Xcode 4 - command line target with initial setup
I am implementing an app which has a dependency to a command line tool.
This is because there are some presets to do.
The command line tool is responsible to create a sqlite file with all initial ...
0
votes
2answers
253 views
How do I remove excess whitespace in an HTML file? (And only excess whitespace)
I have a horrible, ugly HTML file that was spat out by a form generator and slightly modified to look nice. This HTML file needs to be translated, so I hooked up some scripts using po4a and csv2po, ...

