Tagged Questions
The command-line-tool tag has no wiki summary.
2
votes
2answers
133 views
Program closing before it's really finished
I have a program with two modes: GUI & Just Run. GUI loads a WPF form and lets me adjust settings, while Just Run loads said settings and just... well... runs.
It's a glorified, customizable tool ...
2
votes
1answer
337 views
Converting shell script to Objective-C CLI
I am planning to convert a rather long shell script I have into an Objective C command line tool. I'm planning to use NSTask to run the shell commands (this is a large script, and it has several ...
1
vote
3answers
214 views
Using a cocoa command line application in Linux
I'm writing a command line tool in Objective-C (within xCode) that uses the Foundation Framework. I have to use Objective-C because I need to unarchive objects previously archived by NSKeyedArchiver.
...
1
vote
1answer
177 views
Running JDT compiler from command line with Eclipse configuration file
This help page describes how to run the Eclipse formatter from the command line, giving it formatting settings exported from Eclipse. This is great, for example, for creating a formatting Ant task ...
1
vote
2answers
474 views
How can I compile/package a Java .jar as a Mac OS X command-line tool?
I'm not a Java programmer, but I often use a Java program someone else wrote, that's currently packaged as a .jar file, that I invoke from the Mac OS X Terminal as:
$ java -jar ...
1
vote
2answers
86 views
Automatically registering “commands” for a command line program in python
I would like to develop a command-line program that can process and give "help" for subcommands. To be concrete, say I have a single script called "cgent" and I would like to have subcommands "abc", ...
1
vote
2answers
231 views
How to move a file in to zip uncompressed, with zip cmd tool
I'm try to determine how to use the zip cmd line tool to move a file (uncompressed) in to a zip of compressed files (ie I want a zip in the end with all files but one compressed, b/c the one file is ...
1
vote
2answers
139 views
Help with using Xcode
So, I'm using Xcode to program with C++. I want to access the C++ tool but I'm having this problem.
This is what it looks like when opening a new project. Only for me, I don't have the 'Command Line ...
0
votes
0answers
12 views
Good Windows command line Apps for Web Developers
I've collected a list of good command line tools that i think all Windows web developers should know about but i thought i'd ask all you smart people incase i've missed anything:
What Windows ...
0
votes
0answers
117 views
Converting xlsx to xls using Microsoft Office Compitablity Pack's excelcnv
The internet says that you can convert xlsx files to xls files using Microsoft Office Compitablity like this:
"C:\Program Files\Microsoft Office\Office14\excelcnv" -nme -oice D:\test\new.xlsx ...
0
votes
4answers
90 views
Make a commandline tool from C program
If I want to make a commandline tool using makefile for, say this C program:
# include<stdio.h>
int main()
{
printf("Hello World!");
return 0;
}
I have no previous experience with ...
0
votes
0answers
473 views
How to calculate SFV-style CRC32 in Linux commandline?
Is there an equivalent to md5sum/sha1sum in Linux for calculating SFV-style CRC32s? I checked out cksum, but it seems to be calculating a different sum (perhaps a different polynomial? or I'm ...
0
votes
0answers
86 views
HotKeys implementation in Foundation Tool(Command line tool) application
I have this code below by which I implement the HotKeys in normal Cocoa applications. But, when I try to implement the same in command line tool application, "OSStatus ...
0
votes
2answers
264 views
does a runonce command exist to limit command execution
Does this command exist for Linux?
runonce --dampen 300 echo "hello"
The command would take a command to run and optional criteria to limit of frequently it is executed.
The option dampen says ...
0
votes
9answers
152 views
Command Line Tools [closed]
I've been having a look through other questions on the site and can't find one listing out some of the most widely used (or subjectively best) command line tools.
Having just installed Mercurial I'm ...