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
2
votes
1 answer

Any working binary differ tool implements GDIFF(Generic Diff Format, NOT Graphical file difference)?

I've seen GDIFF(Generic Diff Format) in wikipedia, and I wander is there any command line tool implements this standard. Now the best I have is LibXDiff, but it's a library, I'll need some extra work to make it run. I know when it comes to…
tdihp
  • 2,329
  • 2
  • 23
  • 40
2
votes
1 answer

Choice command equivalent for Powershell allowing over 254 characters

Is there a choice command equivalent for Powershell that can allow over the 254 character limit? As the choice command functions, it only allows specified characters. Such as in the example below, only the Y or N characters can be typed. choice /C…
Bill Joe
  • 85
  • 8
2
votes
1 answer

Embedded command line tool called via Runtime.exec in a Java sandboxed app on MacOS results in signal 4

Objective I want to ship my java app myapp to macOS appstore, the app uses a command line tool mytool called with: Runtime.getRuntime().exec(arrayOf("mytool", "argument") Tools Mac M1Pro with Ventura 13.1 OpenJDK 18.0.2 (x64) Xcode…
RadekJ
  • 2,835
  • 1
  • 19
  • 25
2
votes
1 answer

Why do I have inconsistent evaluation of cipher and corresponding plain message using RSA algorithm?

Rationale To simulate the RSA algorithm in C using a robust command-line application written in C. Here is my problem: Taking values of e=7, p=3 and q=11 works fine when encrypting and decrypting. However, when I veer slightly off to use other…
thetva
  • 123
  • 1
  • 8
2
votes
2 answers

Run xcode project in rosetta mode from terminal?

I have M1 machine, I have one project that I only need Rosetta to run it, instead of toggle it on/off from Xcode get info menu I tried to run the command: arch -x86_64 open ~.xcodeproj but the project failed to build each time. Can…
Atef
  • 2,872
  • 1
  • 36
  • 32
2
votes
0 answers

uninstall Python3 downloaded from command line tools

I installed python 3.8.2 using xcode command line tools but now according to this article I should remove it to download Miniforge3. I didn't know how to do it so now I encountered this error when I ran command file $(which python) architecture…
2
votes
1 answer

Exposures in DBT

I'm fairly new in DBT and trying to explore how to exposures. I've already read the documentation ( https://docs.getdbt.com/docs/building-a-dbt-project/exposures ), but I do not feel that I get the answers to my questions. I'm well aware of the…
2
votes
2 answers

Add Windows Credentials using PowerShell & cmdkey

I am trying to use credentials from some UI prompted to add Windows credentials using cmdkey: $sessionCredential = $host.ui.PromptForCredential("Need credentials", "Please enter your user name and password.", "", "Server Crdentials") $ps =…
galsi
  • 421
  • 1
  • 6
  • 19
2
votes
2 answers

Swift Command Line Tool utilizing Process() and multithreading crashes after a certain number of execution rounds (~3148)

I implemented a password generator script in Swift which utilizes Process() to execute Mac OS X command line tasks. The passwords themselves are just random Strings which then are encrypted (bcrypt) by the command line task as…
2
votes
0 answers

Deploying Swift to Server without Vapor

This may be a silly question, but I've been looking for information about deploying a Swift backend to hosting services like Heroku without using the Vapor framework. Are frameworks like Vapor necessary for Swift server projects? as I use (and…
user222864
  • 81
  • 7
2
votes
0 answers

Android platform and build tools installation Failed to find package 'build-tools;28.03.3'

I'm trying to use Android Command Line Tools with Ionic without installing Android Studio on Windows 10 OS In Environment variables > User variables path C:\Users\User\gradle-6.8.3\bin and Variable name: JAVA_HOME Variable value: C:\Program…
user11137294
2
votes
1 answer

Xcode can not build React Native Project, Undefined symbols for architecture x86_64

My project is not able to build with Xcode after my Xcode Command Line Tools & MacOS upgraded. Running npx react-native run-ios works fine, can wake up the simulator and debug. When build on Xcode, I receive this error: Undefined symbols for…
Hang Alec
  • 103
  • 2
  • 11
2
votes
0 answers

How to download a skype recorded session in linux?

I need to download a video that has been recorded in a Skype group with a computer that I only have access through command-line (with ssh). in the Skype desktop app, it's only possible to click on the download button and save the video in the…
2
votes
0 answers

Clang Default Search Path with Xcode Command-Line-Tools Installed

How do I get the default clang search paths to reference the installed command-line-tools framework directories? Upon installing the MacOS/Xcode command-line-tools, I expected the clang default framework search paths to be updated to the location of…
GoZoner
  • 67,920
  • 20
  • 95
  • 145
2
votes
0 answers

Gcc: internal compiler error: Abort trap: 6 signal terminated program cc1

I recently updated to MacOS Catalina, and I get this error in compiling a simple hello-world.c program: gcc -o hello_world hello_world.c dyld: Library not loaded: /usr/local/lib/libmpfr.4.dylib Referenced from:…
Nico Battelli
  • 61
  • 1
  • 2
  • 7