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

Failed to parse command output (Symfony)

So this is what I got when I try to add the Symfony tool (Symfony version : 3..) The project was created from another machine and cloned into mine (Git) I could make the necessary changes for composer.phar and php.exe when adding the Composer tool…
0
votes
2 answers

last publish date of a tableau workbook using tabcmd commands

how to know the history of publish dates of a tableau workbook that is present on tableau server with the help of tab command utility, I have checked for list of tab command utility but not able to figure.
0
votes
1 answer

PhpStorm using Command Line Console Tool from inside Vagrant with Command Line Tools Support Aliases

I like Command Line Console Tool in PhpStorm more than Terminal. It's much easier to use, and there is Command Line Tool Support extension, that could bring aliases for Symfony or Composer. However, this could be possible just for local directories,…
PayteR
  • 1,727
  • 1
  • 19
  • 35
0
votes
1 answer

Xcode - dyld: Library not loaded

I trying to use GCDWebServer installed with cocoapods in my Cocoa Application and it's works fine! But when I try to do the same in Command Line Tool Application I get this error - dyld: Library not loaded:…
Ihor Skliar
  • 384
  • 2
  • 16
0
votes
2 answers

How to run an exe file from windows command line without the title bar?

I have an external .exe file that I need to run on my PC for a demo. I'm running the .exe file from the command line (from CMD) and when I run the .exe file it opens up in a winforms window with the title bar as a regular window. I need to be able…
Liran Friedman
  • 4,027
  • 13
  • 53
  • 96
0
votes
1 answer

Apple Mach -O (ID) Linker Error, ncurses

I am quite new to C++ programming and I've currently fallen into a very asked problem: Xcode's "Apple Mach-O Linker (id) Error". As I've understood it the problem comes from the standard ncurses library which contains all the getch attributes. The…
Filip W
  • 13
  • 3
0
votes
0 answers

Use service acount default credentials in Google Bigquery command line tool

I want to use service account with default credentials in bq command. How can I make the following command read the key-file from environment variable GOOGLE_APPLICATION_CREDENTIALS: gcloud auth active-service-account
0
votes
1 answer

Jailbreak: develop iOS command line tool in Xcode

so i want to write a pretty simple command line tool for my personal use on my jailbroken iPhone, that i can run over ssh or any terminal app locally on the phone. If possible i would like to use Xcode with apples new Swift language. I see that with…
Blubberlase
  • 29
  • 1
  • 8
0
votes
2 answers

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 wait 300 milliseconds and then run the command. Any…
Ozten
  • 188
  • 9
0
votes
1 answer

Swift 3.0 Use of unresolved identifier

I have a very simple project. It is Command Line Tool written on Swift 3.0 using Xcode 8.0. This program is: import Foundation func aaa() { print(a) } let a = "a" aaa() This is working perfectly well and printing "a" in console, but lets do…
Alex
  • 1,038
  • 2
  • 12
  • 32
0
votes
0 answers

Code runs in a Cocoa application, but fails in a command line tool

The error is a EXC_BAD_ACCESS, which is typically a bad pointer of some sort, but the problematic _rawText property is created in the same scope where it fails. Here's the code from the command line tool. The only difference between this and the…
Scamp Dog
  • 68
  • 1
  • 8
0
votes
1 answer

Need to insert a column in csv and parse current date in it - JREPL.BAT?

I could (thanks to dbenham and its powerful JREPL.BAT) remove header row from CSV File with command jrepl "^(Date,)?.*" "($1?i++:i)?$0:false" /jmatch /jbeg "var i=0" /f test.txt /o output.txt I now need to insert in this csv below the date in…
R_life_R
  • 786
  • 6
  • 26
0
votes
2 answers

remove header from CSV file when string is found (ms dos command line)

I need to process the following csv with a dos command line to save it as a bat file. The file has a resizable header I need to delete, and keep the other lines once a specific string is found In this case, I only want to keep the lines after the…
R_life_R
  • 786
  • 6
  • 26
0
votes
1 answer

How to generate strings file using ibtool?

I installed the command line tools in xcode 7.3 and in the command line I used the following command to generate the strings file: ibtool --generate-strings-file testFile.strings MyController.xib and also I tried to give the directory path for my…
Teja Nandamuri
  • 11,045
  • 6
  • 57
  • 109
0
votes
2 answers

Using || for multiple strings in an if statement in swift

I'm making a command line Swift app and I have a user prompt where users can answer "yes" and proceed or anything else and exit. But I was thinking what if someone answers "y" or "YES" or "Yes" or "yEs". I've tried using || but apparently that is…