A command-line interface (CLI) is a mechanism for interacting with a computer operating system or software by typing commands to perform specific tasks.

learn more… | top users | synonyms

2
votes
2answers
62 views

Splitting a command line in Java

What's the recommended way to parse a shell-like command line in Java. By that I don't mean processing the options when they are already in array form (e.g. handling "-x" and such), there are loads of ...
0
votes
2answers
49 views

Provide feedback from Python script to PHP

Suppose a python script that performs a large number of operations, and outputs to the user a progress report while it is running: $ script.py Doing 1 of 100 operations... Operation 1 succeeded with ...
0
votes
1answer
19 views

How to set a method dynamically as other class method

Im new to Ruby, and im creating a cli app with Thor and some additional gems. My problem is that i take user input (from the console) and pass the data as a variable to a existing method (This method ...
1
vote
1answer
14 views

Azure mobile log query

Azure has very useful command line tools, which, among others, can retrieve logs from Mobile service. like this: azure mobile log SERVICE_NAME This command has --query option where you can pass ...
0
votes
1answer
18 views

Using install shield from CLI ,is it possible?

I have some existing install shield 2009 projects and every time i want to create a newer version of them i perform some specific tasks that i want to automate with a script. This are the operations ...
0
votes
1answer
10 views

Right-To-Left text with ImageMagick

I see that newer versions of imagemagick support right-to-left scripts such as Hebrew and Arabic. The fine manual mentions the direction flag, but provides no examples of legal arguments. The obvious ...
0
votes
1answer
24 views

Is $argc interchangeable with count($argv)?

Are there any functional differences I need to make note of? I would assume $argc would be a bit faster since it's a pre-counted value already in memory.
0
votes
1answer
38 views

How to dispose/delete managed object from C++/CLI

I'm working on a native C++ project (/clr enabled) that must use a couple of managed, COM visible C# DLLs. Some of the managed objects implement IDisposable and I would like to call Dispose() on them. ...
1
vote
0answers
15 views

JBoss management via SSL

I have a problem with my JBoss AS 7.1.1 after I configured it to use ssl for the management interface. I followed this guide to secure the admin console. This worked. But now I realized that the ...
0
votes
1answer
23 views

Why calling external command returns 0 when done ok?

Example command: echo "<pre>\n"; system('drush cc all', $retval); echo "</pre>\n"; Everything seems to be ok. There is a message that indicates command run correctly. However $retval ...
-1
votes
0answers
22 views

Browser based CLI [closed]

i have a germ of an idea forming and i wanted to check it out here with the community to see what might be involved. I'm looking for some way to connect a web browser to the command line. Ok if ...
0
votes
1answer
35 views

Bold text through C++ write statement

I'm working on a dictionary server via telnet, and I'd like it to return it in this format: **word** (wordType): wordDef wordDef wordDef wordDef wordDef wordDef wordDef. Right now I'm ...
0
votes
0answers
21 views

codeigniter - how to run from cli in xampp windows environments

i use xampp and my project located in d:\xampp\htdocs\myproject in the codeigniter cli docs, how to execute from cli is php path/to/project/index.php controller function and then i try it like ...
0
votes
0answers
14 views

Codeigniter large db call spamming session-folder

I running a rather large CLI call through codeigniter. The call and cron itself is running just perfectly fine, but the cron is generating a rather large amount of files in my filesystem's session ...
0
votes
2answers
45 views

How to capture multi-line output for commands issued with PHP exec?

I am trying to execute system commands in PHP and capture the output of those commands where that output covers multiple lines. I am using exec(), but it seems like it only returns a value for ...
1
vote
2answers
52 views

How can I elegantly turn user input into a variable name in Perl?

I want to use input from the user to pick a hash to operate on. Currently, I have this cumbersome code: my ( %hash1, %hash2 ); print "Which hash to work with (1 or 2)? "; my $which = <>; chomp ...
0
votes
0answers
45 views

Opening multiple instances of a file with php and pass each instance unique variables

My goal is to open multiple instances of a single php script simultaneously while passing each a set of unique variables. I've pieced together the following simple example, it appears to work. But - ...
2
votes
2answers
86 views

Linux command to get time in milliseconds

I made a search in SO. And I did not get answer for this question I get only C functions to get time in millisecond in Linux. Is there command in Linux to get the time in milliseconds?
1
vote
1answer
23 views

execute remote php scripts using php.exe

Im executing a PHP script using php.exe command. All the script executes well, but under certain condition (using if condition) I must call a second one in a remote server. I tried adding this line ...
0
votes
0answers
43 views

How to load an OpenCV Mat object into a Label?

How can I set an opencv Mat image object into a C++/CLI label? I have tried the following. Mat image = imread("C:/Users/Public/Pictures/Sample Pictures/Desert.jpg"); imageLabel->BackgroundImage ...
0
votes
0answers
35 views

XDebug: how to debug remote console application?

I have read this docs: http://xdebug.org/docs/remote I can debug my web application. But the debugger doesn't launch for console command. My .ini file for XDebug (it works): $ cat ...
1
vote
1answer
45 views

Elegant approach to filter stdout contents to file? Or to turn off Mocha's watching spinner?

I'm using mocha -w for continuous testing. I've run into a bug with another lib's socket connections that only occurs when using mocha -w for an extended time. I need to capture debug output that is ...
0
votes
0answers
69 views

When converting from RGB to YUV using ffmpeg the video file the color is spread why?

I have a project in C++ and I did this in the C file: extern "C" { #include <stdint.h> #include <math.h> #include <libavutil/opt.h> #include <libavcodec/avcodec.h> ...
0
votes
2answers
85 views

c++/cli: Cannot convert parameter 1

I am trying to convert a c# code which works with a dll into c++, so my c++ application can work with the dll. so here i am developing a c++/cli application Please have a look at the following c# ...
0
votes
1answer
65 views

Secure way to run runtime code (XML file editing) C#

I have a CLI application which is able to edit XML files with some parameters. However I'm needing now a more powerful way to do it. I want to give users the option to edit XML files using custom ...
0
votes
1answer
36 views

C++/CLI: Cannot convert parameter

I have a small issue and I will explain it first. I am trying to convert a C# code which works with a C# dll into C++ using C++/CLI, so my C++ application can work with the C# dll. Following is a part ...
1
vote
1answer
50 views

CSV Column Counts via Command Line Alias

I have a Bash scripting question that's no longer important to me but has still been driving me crazy because I can't figure it out. I was trying to compare column counts of CSV files via the command ...
0
votes
2answers
58 views

Mixed types are not supported

Please have a look at the following header file #pragma once using namespace UsbLibrary; ref class MissileLauncher { public: MissileLauncher(void); private: //Bytes used in command ...
0
votes
1answer
34 views

Visual C++ Detect a Right Click on a Button

I have a program where I want a right click on a button to do a completely different amount of code. I have the code display a messagebox for the example, but eventually it will just be a method call ...
1
vote
2answers
48 views

Split string on spaces except file paths

My java application features a small command line. In order to parse the arguments first the line is read in and than chopped into an array using string.split("\\s+"). The arguments are of the form ...
2
votes
1answer
25 views

Python: cmd execute last command while prompt and empty line

The question may be not clear enough to get. Let me clear in details. I'm using python cmd library to implement my own CLI framework and when hit the enter button without typing any command it ...
-1
votes
1answer
24 views

How to use PHP to call another CLI.exe process I/O in linux?

I have a CLI.exe developed by mono and want to control it by PHP. My idea is let the CLI keep readline as its input, after this, we can get a PID of this CLI. Next, Let PHP scripts send commands to ...
1
vote
1answer
55 views

Windows PowerShell Persistent History

So I found this excellent looking method of persisting history in Windows PowerShell. It goes like this: # Persistent History # Save last 200 history items on exit $MaximumHistoryCount = 200 ...
0
votes
0answers
11 views

How to detect current media type in CLI under Windows? (DVD-RW, BD-R, etc)

How to detect current media type in CLI under Windows? (DVD-RW, BD-R, etc) I've tried with wmic cdrom get /format:list but no info about the current media type. I want to detect if the disc is a CD, ...
0
votes
1answer
25 views

CLI cron job sending get request to URL but 404 for everyone else

I would like to setup a cron job for CakePHP which sends GET request a URL in my Cake Application, (or runs a function in my controller). However, if an user visits this URL, they will just get a 404 ...
2
votes
2answers
28 views

PHP CLI - Ask for User Input or Perform Action after a Period of Time

I am trying to create a PHP script, where I ask the user to select an option: Basically something like: echo "Type number of your choice below:"; echo " 1. Perform Action 1"; echo " 2. Perform ...
0
votes
0answers
24 views

pass by reference for pointers in C++ Cli

so this is my code public ref struct noeud { info val;noeud^ FD; noeud^ FG;}; and here is the function void newwcmnd(noeud^ %A,info v){ if (arbrevide(A)) ...
-2
votes
0answers
16 views

where to declare a variable in CLI C++ winforms

it's my first time to program with cli .. and everything is going fine with me .. except for one thing. i have to use a binary tree and applicate some operation at it .. i have to create a main form ...
2
votes
1answer
37 views

Stream support for git-p4 or good p4 command line tutorial?

my current project sits in a perforce stream workspace. I am quite familiar with git, but git-p4 does not support streams. Do you know a way around this limitation? Do you know a good CLI tutorial ...
0
votes
0answers
15 views

Facebook cli authentication

I am trying to write a script on php (python will work too) which sends a post to my page. I have a facebook app and it has all required permissions. I have a working script which does it through a ...
0
votes
1answer
15 views

Zipping together zip files

I'm trying to use the apt package "zip" to zip together some files to simplify the process on the other end for a non-technical person. For organization I wanted to make a zip file of a few zip files ...
0
votes
2answers
44 views

Unexpected notice: undefined index when null

I've written a little script that is supposed to create an array that looks something like this: array(1 => array( 'month' => 'Jan', 'salary' => '01/31/2013', ...
0
votes
1answer
21 views

Adding libraries/Frameworks to XCode project using the command line?

I am looking for a way to add libraries to an XCode project, using the command line. I have been successful in adding files to groups with the XCS tool, but it does not support libraries. I would, ...
0
votes
1answer
25 views

TCLAP: output list of all parameters along with their respective values

I would like to output a list of all specified parameters along with their respective values (either those passed, or the default value if not passed through the command line). Getting the parameter ...
0
votes
0answers
27 views

Visual 2008 c++ cli making a form wait

I've made a form that opens when I click, but the code continues to execute without waiting for me to give any input to the form. The input needs to be used right below where I've called the creation ...
-2
votes
1answer
20 views

C++ CLI drawing lines

I have 2 circles. I want to make a line between them by clicking on once circle, dragging the the mouse to the second circle, and releasing the click. How is this possible in visual 2008 c++ cli?
0
votes
0answers
68 views

String^ manipulation involving .txt file in visual c++ 2010

I have a windows form SearchById and i have a class UserRecord(for storing credentials such as name,etc of users)(having instance obj) defined in UserRecord.h . Now , when I click on Done button on ...
0
votes
1answer
28 views

How do i diff two files from the web

i need some help on the command line. I want to see the differences of 2 files that not in the local filesystem but on the web. So, i think if have to use diff, curl and some kind of piping. ...
-2
votes
1answer
37 views

Can't edit sudo nano /etc/apache2/apache2.conf in Apache on Mac terminal [closed]

I'm guessing this should be easy but I can't work anything out. I'm using terminal on my Mac (latest OS). I'm connecting to a web server and running this command: sudo nano /etc/apache2/apache2.conf ...
2
votes
1answer
49 views

How to pipe Node.js scripts together using the Unix | pipe (on the command line)?

I see how to pipe stuff together using Node.js streams, but how do you pipe multiple scripts together using the Unix |, given that some of these scripts can be async? $ ./a.js | ./b.js Example: ...

1 2 3 4 5 25