Questions tagged [command-line-tool]

A command line tool is a console based application either run in MS-DOS or a terminal (Command prompt for windows, and terminal for linux and mac)

339 questions
0
votes
1 answer

Why does XCode Command Line Tools take up so much space?

I don't know the ins and outs of UNIX-like dev tools, but I am just wondering why does the command line tools alone take up a whopping 170MB on my machine?
0
votes
1 answer

Building software from github on command line linux?

Apologies if the following isn't very clear and is very item specific, but I'm just very confused with what to do next and can't find any answers on google. I am trying to install beschulz's WAV2PNG software on a Ubuntu server. I've followed the…
Grant
  • 1,297
  • 2
  • 16
  • 39
0
votes
1 answer

Using custom extension (/x) in resharper 9.0 command line inspection

So I've got a custom nuget package I build which is installed in vs2013 through the ReSharper extension manager interface. I remember back with resharper 8.2 I could specify a plugin parameter /plugin=xxx.dll to import a custom plugin but with the…
0
votes
1 answer

cannot find inspectCode.exe in Comand line tools for resharper

I'm trying to configure SonarQube with resharper rules, i've installed resharper plugin on my SonarQube and download Command line tools form here. In every tutorial i've read people are just puting path to inspectCode.exe in resharper options in…
Yxop
  • 5
  • 3
0
votes
1 answer

Making and Creating a self-contained Jar file using command prompt

My simple "hello, world" program has the following file structure: root TestClass.class manifest.txt This is the source contained in TestClass.java: package root; public class TestClass { public static void main(String[] args) { …
Dziugas
  • 1,500
  • 1
  • 12
  • 28
0
votes
1 answer

How to add a .xib GUI to a Command Line Tool App?

I am new to OSX development, I have a Command Line Tool app that I am working on. I want to add a GUI(Graphical User Interface such as a .xib) to it so that data can be display nicely. Is it possible to do this? If so, how can I achieve this? Any…
xiaowoo
  • 2,248
  • 7
  • 34
  • 45
0
votes
2 answers

create command line tool from batch file

I created a batch file (with external 3d party commands compiled with it into an .exe) that allows for the use of multiple colors in a single screen. Here's a link to check it out. Here's a screenshot: Anyway, I don't like it. It needs two…
user2605194
0
votes
3 answers

Ruby Script to Command Line Tool

I am trying to make a command line tool. I already have a ruby script (one file). But I want to project it as a normal command line command. Right now I have to go into the directory where the script is and type ruby script.rb for it to function…
0
votes
2 answers

command line tool to echo inputed key

I need a way to detect when the user presses the arrow keys in a windows batch file. I think the easiest way would be to use a command line tool that echoes the decimal value of whatever key has been pressed, and go from there. It would be easier…
user2605194
0
votes
1 answer

How to install Command Line Tools on OSX 10.9.3?

I found this command: xcode-select --install. But if I run it, I get: Usage: xcode-select -print-path or: xcode-select -switch or: xcode-select -version Arguments: -print-path Prints the path of the…
user984621
  • 46,344
  • 73
  • 224
  • 412
0
votes
1 answer

How to use response files with Embarcadero Make.exe

I'm building a project via the commandline tools of C++Builder XE5, but there are too many object files so the output is: MAKE Version 5.4 Copyright (c) 1987, 2010 Embarcadero Technologies, Inc. ilink64 ........... Fatal: Command arguments too…
M.M
  • 138,810
  • 21
  • 208
  • 365
0
votes
1 answer

how to install libX11 on OSx 10.9?

I am trying to install ROOT (cern.root.ch). When I run ./configure , I get a message that libX11 is missing and must be installed. I did some research and found that I need to install ) XQuartz (I already have the latest version.) ) Command line…
Hershal P
  • 11
  • 1
  • 3
0
votes
1 answer

Group management from command line (probably not lusrmgr.msc)

I know how to manage groups (like RDP access) with "lusrmgr.msc" How to do it with a command line? (or a short script)
Olivier
  • 393
  • 3
  • 11
0
votes
1 answer

iOS command-line build: How to create xcode archive from command line?

I am using below command to create an signed ipa file from command line i.e. terminal. xcrun -sdk iphoneos PackageApplication \ "path/to/build/MyApp.app" \ -o "output/path/to/MyApp.ipa" \ --sign "iPhone Distribution: My Company" \ …
Rashmi Ranjan mallick
  • 6,390
  • 8
  • 42
  • 59
0
votes
0 answers

Include user headers in Xcode 5

I added an additional search path "/opt/local/include" in Build Settings > Search Paths > User Header Search Paths in the default command-line tool project. main.c is not edited. I get a number of Parse Issues with stdio.h with /opt/local/include…
Takeshi
  • 41
  • 3