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.

learn more… | top users | synonyms (1)

0
votes
1answer
27 views

How to make a system call remotely?

I have an app that has to mount a disk on a server. The disk and the server all connected, it just has to use the linux 'mount' command. I wrote a php that is simply: <? exec(sudo mount ...
1
vote
2answers
14 views

git alias to delete local and remote

I'm trying to write an alias to delete both a local and remote branch at the same time, but I can't figure out why the syntax is not working. In ~/.gitconfig, I've tried the following aliases, but ...
1
vote
2answers
28 views

How to use pipe (“ | ”) in PHP exec?

I can use CMD to execute two command in the same time using: command1 | command2 In PHP, I assumed it should work but it doesn't: Shell_exec("command1 | command2 "); How to fix it? Thanks
0
votes
0answers
9 views

Is there something like WPF commands in Oxygene?

I'm just getting started with Oxygene. I'm trying to make a litlle WPF project with a MVVM pattern. So far it's working but i can't find a way to implement commands in oxygene. Does anyone know if ...
0
votes
1answer
13 views

How to mark as writable every bin/obj subfolder of a read-only directory?

I have a big directory with multiple projects inside. This directory is presently marked as Read-Only. But I want to change every "bin/obj" subfolder to be marked as writable with a windows command. ...
1
vote
5answers
50 views

Replacing text in a file from a list in another file?

I asked this question before but don't think I really explained it properly based on the answers given. I have a file named backup.xml that is 28,000 lines and contains the phrase *** in it 766 ...
0
votes
4answers
48 views

Find and replace using a list in text file?

I'm not even sure if this is possible, but sure am hoping that it is. I have this line 766 times in the file backup.xml: *** Hosting Services I then have the file list.txt which contains 766 lines ...
0
votes
3answers
35 views

How to add new number into each line?

I have this line about 500 times in a my file backup.xml my-company-review/</link> Is there a way through command line, perl, etc. to add a number into the line after the word review. For ...
0
votes
1answer
9 views

How to find and replace on a specific amount of times?

I need to find the first 413 times this is in a text file: <title>Local SEO Services - The Company Review</title> And replace it with this: <title>Local SEO Services - TheCompany ...
0
votes
2answers
13 views

passed command line paramenters

I'm writing a program where the user can pass in options such as, -e or -n, as command line parameters. But the following if loop doesn't work for some reason. I'm trying to run the program as: ...
0
votes
1answer
46 views

Grails command that extends another command bug

I'm having a problem with Commands in Grails when I extends one generic Command to reuse it's custom validator. When I clean the grails project, it loses the reference to the extended custom ...
0
votes
0answers
41 views

MVVM WPF Command not firing

I have MVVM WPF application. I create menu via a separate service and set to load time. My shell view which contains the menu is as follows, <ItemsControl x:Name="MainToolbar" ...
0
votes
0answers
22 views

iPhone 'slide to unlock' terminal command

Is it possible to 'slide to unlock' an iPhone using MobileTerminal? I have scoured google and cannot seem to find a command related to this. I simply mean that I would like to unlock the phone for use ...
0
votes
0answers
14 views

Indy TIdCmdTcpClient debug time losing commands

I have an application with TIdCmdTcpClient and command handlers. What happens is that sometimes if successive calls to the same command handler (same cmd) arrive from the server (a C external app) ...
0
votes
1answer
20 views

Linux zip command: add a file with different name [closed]

I´d like to add a file in a zip file, with a different name, and avoiding the creation of a new file with the desired name. For example, I´d like to add the myfile.txt file to a zip, but renaming it ...
0
votes
2answers
43 views

Using cmd.exe from C#

I have been toying with the Process class in C#. I have some code below I'd like to use to open cmd.exe and run the DIR command. However, when I attempt to use the code, the cmd.exe opens, but no ...
0
votes
1answer
30 views

WPF: call Command in MVVM after view is rendered?

I am designing a WPF app and using MVVM pattern. Let's say I have one view called View1, and it's DataContext is set to ViewModel1 in it's contractor. The VM has one Commandcalled RefreshCommand whose ...
0
votes
0answers
14 views

Master/Detail Flow Activity command

I'm new in the developing applications,and I have a main menu that contains buttons,one of the buttons should open a Master/Detail flow activity, what is the command that I should put in my button and ...
0
votes
1answer
18 views

Command to paste the Clipboard content into Notepad

I have scenario where I can use only command line operations to do my things. I have some file which is already opened. I want to copy the content from this file and save it to notepad. I am able ...
0
votes
0answers
20 views

ProcessBuilder keep process window from closing

I am using ProcessBuilder to execute a program. Currently when I execute the process the program opens up, runs its scripts and then immediately closes. I would like to keep the program open after I ...
0
votes
3answers
36 views

How do I create a new card in another stack?

I have a script in a stack called "loader" and I want to create a new card in another stack called "theData". If I just use create card the cards are created in the stack "loader". How do I specify ...
0
votes
1answer
37 views

Mvvm Windows Phone 8 command Error: BindingExpression path error: 'SalvarCommand'

My commands are pointing to the Model class and not for ModelView System.Windows.Data Error: BindingExpression path error: 'SalvarCommand' property not found on 'SuperListaW8.Model.ListaItem' ...
1
vote
0answers
20 views

Windows command to copy file forcefully when that file is used by another process [migrated]

I am copy a file using copy command. But its throwing some error. copy /y ..\BuildLog.htm . Error is : The process cannot access the file because its used by another process XCOPY /Y is also ...
0
votes
1answer
39 views

Find b'' in command output?

I'm trying to find a specific string from a command output in terminal. It doesn't work however. Here is the command I'm running: check = subprocess.check_output("netctl list | sed -n 's/^\* //p'", ...
0
votes
1answer
25 views

how to invoke a method from an Entry Widget in Ruby Tk

I'm looking for an option or a way to bind an event, which invokes a method from an Entry-Widget. Like the command option for button-widgets: command { method } or like binding an event for ...
1
vote
0answers
17 views

Command to trigger a mousewheel event

I am doing a research of Kinect to browse pictures. My application has the ability to change pictures by sending command System.Windows.Forms.SendKeys.SendWait("{Right}"). Now to enlarge the ...
-1
votes
0answers
24 views

Create matlab exe package with cmd

I am working on some matlab code and need to compile to exe to offer custmer. I used the deploy tool to generate exe but failed. I used mcc and add all the path in previous deploy project, then the ...
0
votes
1answer
30 views

Shell command for getting history of a specific command

I am looking for a command that shows what type of parameters are used earlier for the command I am using currently. For example, if I want to use the command say tail, can I see the list of commands ...
0
votes
1answer
18 views

Something similar to RoutedCommands, but for MVVM

I have a Command bound to my MainWindow via CommandBinding to the Delete key. I want that, depending on the context (which element is active), the same command would be translated to different ...
-1
votes
1answer
32 views

Download complete directory command line psftp [closed]

i have to move a complete folder from 1 source to another destination. still now i used mget * and xcopy but of no use.please suggest some snippets. am using psftp to connect the ftp. my code is : ...
0
votes
0answers
29 views

Add to Command Action From Parent Control

I have a custom control that is a textbox with an embedded button for clearing the textbox. The button is wired to the ApplicationCommands.Delete command with the target as the textbox. This works ...
1
vote
2answers
48 views

Switch a buffer after C-x C-b command USING KEYBOARD

After having typed C-x C-b there will a new window showing currently opened buffers... that is easy. But how can I switch to one of them using only my keyboard? Now I have to move my mouse an click on ...
0
votes
0answers
16 views

loading MIB file snmptranslate

I downloaded and put a MIB file into my /usr/local/share/snmp/mibs directory. I am trying to use snmptranslate -m +necronIV-mib2-V1.4.11-three.mib -IR -On npm4TotalVoltageA but i get error of ...
0
votes
1answer
43 views

Implementing a command-line argument

I have to implement the main function with the following signature: int main(int argc, char *argv[]) What is a command-line argument and why don't I need test cases for it? And what do they ...
0
votes
0answers
46 views

Python error in line passing parameter to command

what does this error means? TypeError: cannot concatenate 'str' and 'set' objects. def main(): print 'ffffffffffffffffffffffffff' try: print getopt.getopt(sys.argv[1:], 'u:a:s:', ...
-1
votes
1answer
35 views

send command to pc using mobile phone [closed]

This is my situation: I have a PC that has access to a server, when I need to reboot the server I have to log in into this PC to reboot the server. Sometimes I need to reboot the server but I don't ...
2
votes
1answer
37 views

Redirect output processed via vbscript (cscript) to file

Issue with command output: I am attempting to have a continuous ping report back to a text file. Started with: ping 127.0.0.1 -t >> C:Textping.txt Works great I also want to have ...
0
votes
1answer
28 views

*Error: (null) Code:8004100E Source:(null) Do you want to stop debugging ?* error while running the following vb script

Execution of following Vb-script leads to the Error: (null) Code:8004100E Source:(null) error Program:- ' List Internet Explorer Summary Settings strComputer = "." Set objWMIService = ...
0
votes
1answer
33 views

Command binding in code behind

I am trying to bind a command in code behind of a custom control. The control itself doesn't have a ViewModel but the page which it is going to be a part of has one. That view model has multiple ...
0
votes
2answers
24 views

Efficient way of using auto complete in Linux [closed]

Guys What is a more efficient way of doing the following using auto-complete? cd ls cd bar ls cd baz ls cd basilio
0
votes
1answer
55 views

how to use terminal commmands on qt

I am QT for a project and I want to compile and run few C++ codes on QT. I have written the following code to compile a C++ file. But I don't know how to check if the program was compiled properly. If ...
-2
votes
1answer
15 views

I dont run mi script junit by .bat

I read other questions like a: "How to run Junit testcases from command line?" and "how to run junit test command line from java [duplicate]" I still can not run my script from a file .bat: java -cp ...
0
votes
1answer
56 views

How to properly run “top” command through SSH?

I'm using this library to connect to the Linux commands I run and run but Some commands have problems For example, I have a problem running these commands: top and top -n 1 error:TERM ...
0
votes
2answers
28 views

CMD - Command to change front size

Is there a way to enter a command into cmd, and increase the front size, not the resolution? Not by clicking on the properties, but by typing a command in the cmd.
1
vote
1answer
21 views

find command in python failing with “missing argument to -exec”

I am trying to find files older than certain number of days and remove them subprocess.call(['find', DIRECTORY, '-mtime', '+5', '-exec', 'rm', '{}', r'\ ']) Why is this call giving me missing ...
0
votes
0answers
50 views

How to print in chinese on epson printer using delphi code and what is mode of Epson is it ascii or Unicode?

I have to print the content in chinese on epson printer .I have used all commands related to character set and code table(ESC R n) and (ESC t n) and tried to print the content but its not printing in ...
1
vote
3answers
60 views

how to remove unnecessary chars from date command output in python

I am new to python. Forgive me if it's too simple. I want to extract only date using date command in python import subprocess p = subprocess.Popen(["date", '+%m/%d/%y'], stdout=subprocess.PIPE) ...
0
votes
1answer
26 views

Enter password in command prompt on fly

I have a problem here. string strDir = @"cd /d d:\dirc"; string strCmd = @"gpg --output d:\dirop\outputfile.TXT --decrypt d:\dirip\encfile.enc"; string strPass = ...
1
vote
1answer
24 views

How to show only newly logged content in tail -f?

normally tail -f shows 10-15 already logged content.How can I avoid it? I only want to see newly logged content.Is there any switch in tail for that.Please advice.
1
vote
1answer
33 views

RaiseCanExecuteChanged more convenience

I'd like to RaiseCanExecuteChanged when CanExecute condition got changed. E.g.: public class ViewModel { public viewModel() { Command = new RelayCommand(action,condition); } private bool ...

1 2 3 4 5 58