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)
Questions tagged [command-line-tool]
339 questions
0
votes
1 answer
How to copy one folder into multiple folders in windows
This is the issue. I have a folder named Covers which is in another folder named Folder A. I have to copy the Covers folder from Folder A to all the sub-folders of another folder named Folder B. There are hundreds of sub-folders in Folder B. How can…

Aaron Jones
- 72
- 2
- 9
0
votes
1 answer
How to execute command to process blob file in azure
I have scenario where I want to execute a command to process a file whenever it gets added to azure blob storage. That command can only take local path as input. What is the best way to achieve this in azure?
Thanks in advance
EDIT:
The flow is like…

user11823877
- 143
- 1
- 15
0
votes
2 answers
R and sra toolkit - odd system() behavior
In order to extract some fastq data from NCBI's sequence read archive I've downloaded and installed the sra toolkit for Windows. In order to test if it is setup correctly, I opened cmd, navigated to the directory and typed in the command…

Anti
- 365
- 1
- 14
0
votes
1 answer
How to sample 50 random files from my dataset witch each file having the same probabilty to be taken in shell script?
does find /mnt/Dataset/ -type f | shuf -n 50 is doing the trick?
Does shuf wait to count all the lines then do a random selection? Does shuf give the same probability to each line? Or should I use another tool?

Fractale
- 1,503
- 3
- 19
- 34
0
votes
2 answers
How to append value to a system property using command line
When setting property value via command line, the whole value will be replaced. Example:
$ java -XshowSettings:properties ...
Property settings:
<...snip...>
java.library.path = /usr/java/packages/lib
/usr/lib64
/lib64
…

Anthony
- 1,877
- 17
- 21
0
votes
1 answer
Remove one specific empty git commit with command-line tool
For a nodejs command-line tool I add an empty commit to a repo and then want to remove it later.
Later I have at least 3 commits. The first one is a merge commit, the second one is the empty one I created and the third one is likely one from another…

Justin
- 367
- 2
- 14
0
votes
1 answer
ffmpeg -i not working when converting media files to mp4
I'm using FFmpeg to convert my media file because It's a free source. But can't figure out how to use it. It takes one and a half hour just to troubleshoot but I totally messed up! I went here to seek any help (I'm using windows 8.1 OS)
I configure…

outtobias0x9
- 1
- 1
0
votes
0 answers
Stop user use control-c to stop command line tool in swift
I wanna stop user use control-c to stop command line tool, and do something when user press control + c. I find sth but it isn't work in the swift5
signal(SIGINT, SIG_IGN)
let sigintSrc = DispatchSource.makeSignalSource(signal:…

Underthestars-zhy
- 108
- 7
0
votes
1 answer
How to achieve to and fro questions like command using commander.js?
I want to achieve something like folloing using commander.js
$ my-tool create-environment
Press ^C at any time to quit.
environment name: (UAT) : Prod
environment url : hhtps:www.google.com
Created new environment Prod
$
Please note here user has…

Deepak Verma
- 11
- 2
0
votes
0 answers
Windows Jenkins "Windows Batch Command" vs Command Prompt
We are using jenkins to run a python script through command prompt. The command is like C:\Program Files\...\someapp.bat test.py. The someapp.bat is a customized python and it has a library called arcpy. The test.py file includes a statement import…

zhangjinzhou
- 2,461
- 5
- 21
- 46
0
votes
1 answer
Can't run npm script when headless emulator is running
I'm running this scripts. but after the headless emulator command runs, then the npm script command never runs as the emulator command is running. how to fix that?
npm install
npm install -g appium
$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager…

J.Adhikari
- 125
- 1
- 13
0
votes
1 answer
Command Prompt Input and Output
I want to take data from 'input.txt' to run 'main.exe' and then save the result of that program with this data to 'output.txt'.
If possible, I would like to write wwith form .

Lê Ngọc Đức
- 3
- 3
0
votes
0 answers
How to run a Python click module multiple times based on input prameters?
Consider you have a function run() decorated as click.command() and multiple click.options() for default values and more specifications. In this run function I want to call my other 'sub' functions of the tool one by one with the given…

The dude
- 53
- 5
0
votes
1 answer
Can we use a CLI tool in linux, if we have not installed the programming language using which that tool built?
Suppose I want to use a CLI tool which was previously built using python, and I don't have python installed on my system. Am I still able to use that CLI tool ? (without installing python). If yes, then how it made to work ? Will it be same if tool…

Rishi
- 75
- 7
0
votes
1 answer
How do I stop command line developers tool icon from showing
This isn’t much of a big problem just a nuisance.
So when ever I open and or close eclipse/IntelliJ application on my Mac, this icon shows up saying “the git command requires the command line developers tool. Would you like to install?”.
This icon…

Just_a_noobie
- 17
- 5