A command is a directive to a computer program acting as an interpreter of some kind, in order to perform a specific task. Most commonly a command is a directive to some kind of command line interface, such as a shell.
0
votes
2answers
99 views
Switch command pages in delphi
First of all, i would like to apologise in advance for how bad the title may be, but i really need your help.
First of all, let me explain you what i meam by switch command pages:
Let's guess that ...
1
vote
2answers
85 views
How to remove from file specific content from another file?
I have a file foo.txt:
$cat foo.txt
<ul>
<li>
<p>something</p>
</li>
<li>
<p>something else</p>
</li>
</ul>
And a bar.txt:
$cat bar.txt
...
0
votes
1answer
53 views
ProcessBuilder not behaving properly with multiple arguments
I have a ProcessBuilder:
String src = c:/hello/
String dst = c:/hello/2
ProcessBuilder builder = null;
builder = new ProcessBuilder("c:/file/file.exe", "-i", src, "-f", "-l 500", dst);
...
0
votes
0answers
21 views
CommandBinding won't fireing Command with UserControl
I have done searching around with no success. My UserContorl (UC) has no xaml (only UserControl default defenition in xaml). In the codebehind there is a dependency properties and logic stuff. I ...
0
votes
2answers
12 views
executing an app without using “./” [closed]
I am using kubuntu linux system.
after compilation i want to run the app from the directory stored without using
the ./ beginning at command shell.
is there a way to cancel the use of "./"?
thanks
3
votes
1answer
49 views
Retrieving low level elements from complex list (R)
Suppose you have the following rather complex list structure:
all_m<-list();clist1<-list();clist2<-list()
for (j in 1:3){ for (i in 1:5){
m1<-matrix(rnorm(4,0,1),2,2)
...
0
votes
2answers
18 views
How to retrive first row, first column cell value of a command process output using linux command
I want to get the value 385 which is in the process output of below code, I want to do this through command itself, is there any way to do this.
I don't have enough knowledge in Linux commands, ...
0
votes
2answers
36 views
Removing duplicate emails through command line?
I have two lists of emails in text files:
emails.txt - people who are subscribed to my newsletter
blacklist.txt - people who have unsubscribed
I'm in the process of changing newsletter softwares ...
1
vote
2answers
24 views
Vim command window output closes automatically when the key mapped to :mark<CR> is pressed
So this is what I have
nnoremap M :marks<CR> " show marks
If I manually type the command and press enter, it shows up fine. Also other commands that does not have "Press Enter or type ...
7
votes
1answer
46 views
Please explain: trap 'sudo kill -9 — -$$' EXIT
What is this shell command doing?
trap 'sudo kill -9 -- -$$' EXIT
0
votes
1answer
45 views
Batch File Echo a line contains % to a Text File
I'm adding the following line to a Batch file using:
ECHO enter.php?login=%s&pass=%s >>textfile.txt
the Output is coming as
enter.php?login=s
This is my first Batch file.
-1
votes
1answer
60 views
connect web page to command line server
I have a php code running as a server using command line. I use telnet client to connect to the server without problem. But I do not want the client to be telnet, I want it to be a web page so that ...
-1
votes
1answer
26 views
Unable to retrive some regedit entries using *REG QUERY* command
I am using REG QUERY HKLM/SOFTWARE command to retrieve all installed soft wares,
but its not returning few of applications, what ever the application I needed is a 64 bit one.
OS:- Windows 7
Note:- ...
0
votes
0answers
29 views
Why Xcode clean command deletes both debug and release mode files?
The clean command in XCode, removes both 'debug' and 'release' mode executables.
So, I could not compare the output of two modes.
Please suggest, how to 'clean' only the 'selected' mode of files ...
1
vote
1answer
34 views
How to add Command to ListBox.ItemTemplate
I have a WPF application using MVVM.
This code is from my ResourceDictionary.xaml
<DataTemplate x:Key="LogListTemplate">
<ListBox ItemsSource="{Binding LogList, ...
-1
votes
1answer
103 views
Exit command prompt after opening a java swing application
I am invoking a java swing program from command program and after executing the java program the console remains open. My bat file contains :
set Gantt_Generator_v5.0="C:\Program ...
0
votes
1answer
46 views
How to move folder using command line in WIN 32 API?
I'm trying to move KFC folder from D drive to C drive using command line in WIN32 API. In KFC folder has an other folder: "New Folder".
I try to using this code but it can't?
CreateProcess( ...
0
votes
1answer
60 views
Drop_caches by app doesn't work
I've made this script but doesn't work:
package com.mkyong.android;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import ...
0
votes
1answer
41 views
linux RSS from ps RES from TOP
Linux : RedHat/Fedora
What is the difference between these memory values:
RES from top command
RSS from ps command
0
votes
2answers
67 views
Command line tools to generate multiple apps from one XCode IOS project
I'm working on an IOS project where we need to generate different branded or customized applications from the same source project. Such customization consists of different images, strings, application ...
0
votes
2answers
121 views
How to run rename shell command in android app (rooted)
I'm new to Android. I'm trying to run a shell command to rename a file in the system. I've got root access to it.
The shell command:
$ su
# mount -o remount,rw /system
# mv system/file.old ...
0
votes
0answers
81 views
sqlplus command not working [closed]
I am trying to install Oracle Application Express on Windows 7, that is why I need SQL*plus . However SQL*Plus cannot be defined in cmd.
I am new to Oracle. What can I do in order to run SQL*Plus ?
0
votes
0answers
101 views
PHP shell exec ssh [closed]
In my old server (debian), I can run ssh like this in php:
try {
$db = new PDO("mysql:host=$host;port=$portOMS;dbname=$dbnameOMS", $sqlUserOMS, $sqlPassOMS);
} catch (Exception $e) {
...
2
votes
1answer
38 views
Conditional loading of snapins in profile
We have an internal application that utilizes PowerShell. In my profile (Microsoft.PowerShell_profile.ps1) I have added references to various snap-ins that we've created:
#
# Profile for Joe Blow
#
...
0
votes
1answer
23 views
launch a folder in windows explorer with php
hi there i am trying to launch a folder in windows explorer but is dosent seem to work the code i am trying is
$contain_path = 'E:\Something\Some Folder';
$folder = '9999 - Some Folder Name Here';
...
0
votes
2answers
86 views
Running python script from within python script
I am new to Python (C++ fluent) and am learning on an as-need basis. I wrote a script that takes several arguments and creates and saves a matplotlib graph. It has no functions, methods, classes, ...
-5
votes
1answer
44 views
Break string into command and arguments in C [closed]
Does anyone know where I can find code to break a C style string into a command and arguments like the compiler does for int main()?
Edit: I need it to acknowledge quotes as well
0
votes
1answer
85 views
authentication error for mifare card “6982:Security status not satisfied”
I know. This question asked before under same tag and same name here. But the answers are useless for me. and i opened again for real answers.
I have pc/sc reader and Contactless card(mifare card), I ...
1
vote
1answer
46 views
Should Command / Handles hold the full aggregates or only its id?
I'm trying to play around with DDD and CQRS.
And I got this two solutions :
add AggregateId to my command / event. It's nice beauce I can use my command as my web service's parameter, and I can as ...
1
vote
1answer
68 views
how to send an external command to external program in bash?
I have an app installed on solaris which have its own specific commands,normally I have run below commands one by one in terminal:
eaw DDBSC1
(then the prompt will change to <)
< ...
1
vote
1answer
75 views
Java : Interactive Console using jTextArea
I am developing a cmd like console using jTextArea, for an IDE. What I want to do is as I click the execute button, it provides me interactive input/output screen in the jTextArea.
I am able to grab ...
0
votes
2answers
112 views
DOS command to list file creation date [closed]
Under Windows 98 (horrible, I know) or DOS for that matter, I need to recursively list the creation dates of files along with their last modification dates.
At the moment I can only see a file's ...
5
votes
2answers
475 views
How to use java program to run command prompt commands?
this is my first time posting here, so I'm not really sure what to say/ask.
Anyways, I am trying to make a simple java program that runs command prompt commands from the java program, mainly used for ...
0
votes
2answers
125 views
Autorun of vb.net program with command line parameters does not work
I am writing an application that needs admin rights to run in VB.NET (VS2012,framework 4)
It is an app to protect the Hosts file from modification.
I want the app to start automatically with windows ...
1
vote
3answers
56 views
Extracting jar to specified directory
I wanted to extract one of my jars to specified directory using jar command line utility.
If I understand this right -C option should to the trick but when I try
jar xvf myJar.jar -C ...
0
votes
2answers
176 views
Is hadoop jar command class name case sensitive?
I just started learning hadoop 1.1.2 recently.
When I begin running the WordCount case, The two kind of codes are both fine.
command A:
hadoop jar /usr/local/hadoop/hadoop-examples-1.1.2.jar ...
1
vote
0answers
57 views
Badly placed ()'s when creating Xquery command
So I have created the same books.xml file from W3schools. Now I'm trying to use Xquery.
I started with this command: doc("books.xml")
but it shows the following error:
Badly placed ()'s.
I ...
0
votes
2answers
110 views
Teradata client on Unix Solaris
I deploy some .bteq and .sql scripts on a TERADATA database. For doing this, I use a client on my desktop called BTEQWin version 13.10.0.03.
I get the .bteq/.sql from a version control like pvcs/svn ...
0
votes
1answer
35 views
What's the difference between @ an non @ command in batch script?
What's the difference between @ an non @ command in batch script?
Eg, what's the difference between
@IF
and
IF
One more question:
What's the difference between % and %% in batch script?
Eg, what's ...
0
votes
1answer
59 views
c# execute shell command and get result [duplicate]
I am executing a command prompt command as follows:
string cmd = "/c dir" ;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "cmd.exe"
...
0
votes
0answers
35 views
nHibernate fails to timeout while connecting to Oracle database
I am unable get to set the command time while executing commands on Oracle database.
Tried to set connect_timeout in nHibernate xml config file
Tried to set time out in the method of the interface ...
0
votes
0answers
17 views
Command line for changing console
I am looking out a way I can switch windows consoles like we do in
Windows task manager->Users [TAB]->Connect to some console.
I want a way to get this done programmatically, preferably command ...
0
votes
1answer
40 views
Windows For command Fails for files over 2gb
I have a windows for /F command that works perfectly well on files up to 2gb but simply does nothing and proceeds to the next command when they are over 2gb
I have searched for documentation ...
1
vote
1answer
60 views
Run a command when responding to an event
Basically, I am trying to respond to an event raised by a WPF control, but instead of using code-behind, run a command (an ICommand) instead.
I have a Window called CouponView and a UserControl ...
0
votes
3answers
41 views
Echo a command on screen
I would like to echo a command onto the screen. I'm making something of a tutorial for someone and I want to display the command that is going to be running when they press enter.
For example, I have ...
0
votes
1answer
88 views
How do I move all arguments entered in a shell script to a folder?
I am trying to move all the arguments that are given when the script is run, to a RecycleBin directory. I am setting RecycleBin to be a directory in my home folder using RecycleBin="$HOME/Recycled".
...
0
votes
1answer
87 views
CMD instead of running command just opens it
OS Win7, GAE 1.7.6, Python 2.7.3
Working on Google app engine project with 2 other people, project leader gave us sample data via sampleData.cmd to run it inside.
nameOfTheApp\main>sampleData
...
0
votes
2answers
73 views
Db2 mainframe commands
I am naive in mainframe and my question would sound silly. However, I want to know where do we write or issue db2 commands,say diplay database command. Under which option do we issue these commands. ...
0
votes
0answers
16 views
cakephp unix login and execute commands
Over the last months I’ve built a full cakephp app for my company to handle workflow, attendance, etc.in a unix environment.
Aside from that app, many people login directly to a unix prompt to ...
0
votes
3answers
66 views
(Python) Connecting subprocess pipes/Running command through a jump box
So I want to use python to run a command on a server, but to do that I have to go through another box. I connect to the first box by running ssh through subprocess. However, Im unsure how to then get ...


